You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
YARN_ENABLE_HARDENED_MODE: 0
jobs:
check-create-redwood-app:
name: Check create redwood app
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up job
uses: ./.github/actions/set-up-job
with:
set-up-yarn-cache: false
yarn-install-directory: .github/scripts
build: false
- name: Check create redwood app
working-directory: .github/scripts
# This is to get colors in the output.
# See https://github.com/chalk/supports-color/issues/106.