Update dependency node to v22 #2469
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: test | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: "22" | |
| cache: "yarn" | |
| - run: "yarn install" | |
| - run: "yarn analyze" | |
| acceptance: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: "22" | |
| cache: "yarn" | |
| - run: "yarn install" | |
| - uses: cypress-io/github-action@v2 | |
| with: | |
| command: "yarn ci:test:acc" | |
| unit: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: "22" | |
| cache: "yarn" | |
| - run: "yarn install" | |
| - run: "yarn ci:test:unit" |