Skip to content

Release 28.2.1

Release 28.2.1 #327

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: actions/setup-node@v4
with:
node-version: "18"
- run: npm install
- run: npm run lint
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-14, windows-latest]
# See https://github.com/nodejs/release#release-schedule
node-version: [18.x, 20.x, 22.5.1]
steps:
- uses: actions/checkout@v4
with:
lfs: true
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run test