- Notifications
You must be signed in to change notification settings - Fork0
Update Node.js to v22.21.0#1489
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:test | |
| on:[push] | |
| jobs: | |
| build: | |
| runs-on:ubuntu-latest | |
| steps: | |
| -uses:actions/checkout@v3 | |
| -uses:actions/setup-node@v3 | |
| with: | |
| node-version:"22.21.0" | |
| cache:"yarn" | |
| -run:"yarn install" | |
| -run:"yarn analyze" | |
| test: | |
| needs:build | |
| runs-on:ubuntu-latest | |
| steps: | |
| -uses:actions/checkout@v3 | |
| -uses:actions/setup-node@v3 | |
| with: | |
| node-version:"22.21.0" | |
| cache:"yarn" | |
| -run:"yarn install" | |
| -run:"yarn test" | |
| test_acceptance: | |
| needs:build | |
| runs-on:ubuntu-latest | |
| steps: | |
| -uses:actions/checkout@v3 | |
| -uses:actions/setup-node@v3 | |
| with: | |
| node-version:"22.21.0" | |
| cache:"yarn" | |
| -run:"yarn install" | |
| -uses:cypress-io/github-action@v2 | |
| with: | |
| command:"yarn ci:test:acc" |