Skip to content

[dist] Rename? No, not it #2

[dist] Rename? No, not it

[dist] Rename? No, not it #2

Workflow file for this run

name: ci
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['0.8.x', '12.x', '14.x', '16.x'] # Including Node.js 0.8.x
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run test