Skip to content

update deps and CI

update deps and CI #59

Workflow file for this run

name: ci
on: push
jobs:
test:
runs-on: ubuntu-20.04
name: Test on Node 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install --no-frozen-lockfile
- run: pnpm build
- run: pnpm compile
- run: pnpm docs
- run: pnpm copy-compile
- run: pnpm test
- name: Upload coverage report on Node 20 to coveralls.io...
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}