Skip to content

update 0.1.0-alpha.1 #15

update 0.1.0-alpha.1

update 0.1.0-alpha.1 #15

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
# - name: Cache dependencies
# id: cache
# uses: actions/cache@v3
# with:
# path: ./node_modules
# key: ${{ runner.os }}-modules-${{ hashFiles('package-lock.json') }}
- name: install dependencies
# if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- run: npm run build
- run: npm run test