Skip to content

add budge

add budge #2

Workflow file for this run

name: Test Node.js 16.x/18.x/19.x/20.x
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16.x # End 2023.09.11
- 18.x # End 2025.04.30
- 19.x # End 2023.06.01
- 20.x # End 2026.04.30
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run build