Skip to content

[package] converting to monorepo using npm workspaces #9

[package] converting to monorepo using npm workspaces

[package] converting to monorepo using npm workspaces #9

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
test:
name: node@${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18', '20']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run check
- run: npm run test:unit
- run: npm run build