Skip to content

fix npm publish workflow. #25

fix npm publish workflow.

fix npm publish workflow. #25

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches: '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]
steps:
- uses: actions/checkout@v4
- name: Setup Node 20
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- run: npm run build
- run: npm run test:unit