Skip to content

Merge pull request #50 from Luke-zhang-04/v3.2.0 #175

Merge pull request #50 from Luke-zhang-04/v3.2.0

Merge pull request #50 from Luke-zhang-04/v3.2.0 #175

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
test:
name: lint, build, test
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- uses: pnpm/[email protected]
with:
version: 8.6.11
- uses: actions/setup-node@v2
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
cache: pnpm
- name: install deps
run: pnpm install
- name: lint
run: pnpm lint
- name: build
run: ./build.sh --no-docs
- name: test
run: pnpm test