Update dependencies, change Node.js version to 20, and enhance test c… #421
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
| on: | |
| push: | |
| branches-ignore: | |
| # Ignore branches automatically created by github-rebase | |
| - rebase-pull-request** | |
| - cherry-pick-rebase-pull-request** | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Test | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Install | |
| run: yarn install --frozen-lockfile | |
| - name: Build | |
| run: yarn run build | |
| - name: Test | |
| run: yarn test |