name: test on: pull_request # Cancel in progress workflows on pull_requests. # https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true jobs: test: runs-on: ubuntu-latest steps: - name: Checkout repo uses: actions/checkout@v4 - name: Set node version uses: actions/setup-node@v3 with: node-version-file: ".nvmrc" - name: Install dependencies run: yarn install --frozen-lockfile - name: Run tests run: yarn test