Skip to content

Make unit tests ES modules #320

Make unit tests ES modules

Make unit tests ES modules #320

Workflow file for this run

name: CI
"on":
push:
pull_request:
types: [opened, reopened]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macOS-latest
- windows-latest
node-version:
- 18
- 20
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v3
- run: npm ci
- run: npm run build
- run: npm run test-all