Skip to content

[package] bump version to 3.0.0-beta.0 #95

[package] bump version to 3.0.0-beta.0

[package] bump version to 3.0.0-beta.0 #95

Workflow file for this run

name: Unit testing
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
test:
name: node ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18, 19]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run test:unit
- uses: codecov/codecov-action@v1
with:
flags: unit