Skip to content

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

chore(deps): update node.js to v22

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

Workflow file for this run

name: Linting
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
lint_and_typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.14.0
- name: npm ci
run: npm ci
- name: lint
run: npm run lint
- name: build
run: npm run build
- name: test
run: npm run test --if-present