Switch back to using major-only versions for actions #270
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint and Unit Test | |
| 'on': | |
| - pull_request | |
| jobs: | |
| lint_and_unit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the repo | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - name: Setup Node.js, install deps | |
| uses: ./.github/actions/setup | |
| - name: Run jest coverage | |
| run: pnpm test --coverage | |
| - name: Run flow | |
| run: pnpm flow |