Skip to content

drop Node 18 from CI matrix #55

drop Node 18 from CI matrix

drop Node 18 from CI matrix #55

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
- name: yarn install
run: yarn install
- name: build
run: yarn build
env:
CI: true
- name: lint
run: yarn lint
env:
CI: true