Skip to content

change node.js of github acrions from 20, 22 to 22, 24. #639

change node.js of github acrions from 20, 22 to 22, 24.

change node.js of github acrions from 20, 22 to 22, 24. #639

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
node-version: [22.x, 24.x]
env:
CI: true
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, lint, dist
run: |
npm install
npm run lint
npm run dist