chore(deps): update node.js to v22 #479
This file contains 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: Checks | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Use NodeJS 22" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'yarn' | |
- name: Install | |
run: yarn install | |
- name: Run build | |
run: yarn build | |
- name: Run test | |
run: yarn test | |
- name: Run lint | |
run: yarn lint |