Skip to content

release 28.0.0

release 28.0.0 #308

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
node-version: [ 20, 22, 24 ]
npm-version: [ 10, 11 ]
os: [ macos-14, windows-latest, ubuntu-22.04, ubuntu-24.04 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install npm ${{ matrix.npm-version }}
run: npx --yes npm@^${{ matrix.npm-version }} install -g npm@^${{ matrix.npm-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm pack