Skip to content

Update package-lock.json #333

Update package-lock.json

Update package-lock.json #333

Workflow file for this run

name: test
on:
push:
paths-ignore:
- README.md
branches:
- main
pull_request:
paths-ignore:
- README.md
branches:
- main
jobs:
test-lib:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Test lib
run: |
npm ci
npm test
test-demo:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Test demo
run: |
npm ci
npm run build
cd demo
npm ci
npm run build
npm test