Skip to content

Release v0.7.2 (#14) #18

Release v0.7.2 (#14)

Release v0.7.2 (#14) #18

Workflow file for this run

name: CI
on:
push:
env:
CI: true
jobs:
lint:
uses: NicTool/.github/.github/workflows/lint.yml@main
coverage:
uses: NicTool/.github/.github/workflows/coverage.yml@main
secrets: inherit
test:
needs: lint
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
node-version: [ 16, 18 ]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
name: Node ${{ matrix.node-version }} on ${{ matrix.os }}
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test