Skip to content

Merge pull request #12 from gmaxlev/v1.3 #146

Merge pull request #12 from gmaxlev/v1.3

Merge pull request #12 from gmaxlev/v1.3 #146

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci --verbose
- run: npm test
- run: npm run build