Skip to content

chore(ci): drop node 20, add node 26 #688

chore(ci): drop node 20, add node 26

chore(ci): drop node 20, add node 26 #688

Workflow file for this run

name: Run tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 24.x, 26.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: yarn install and test
run: |
yarn install --immutable
yarn run test
env:
CI: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: yarn install and lint
run: |
yarn install --immutable
yarn run lint
env:
CI: true