Skip to content

chore(deps): update node.js to v22 #481

chore(deps): update node.js to v22

chore(deps): update node.js to v22 #481

Workflow file for this run

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