Skip to content

version: 0.1.2

version: 0.1.2 #15

Workflow file for this run

name: Main Workflow
on: [push]
jobs:
build:
name: Build
strategy:
matrix:
node-version: [16, 17, 18, 19, 20, 21]
runs-on: ubuntu-latest
container: node:${{ matrix.node-version }}
steps:
- uses: actions/checkout@v4
- run: node --version
- run: npm install
- run: npm install --only=dev
- run: npm run build
- run: npm run lint
- run: npm test