Skip to content

chore(deps): update node.js to v24 #842

chore(deps): update node.js to v24

chore(deps): update node.js to v24 #842

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Lint code
run: yarn lint
- name: Run unit and integration tests
run: yarn test