Skip to content

Create CNAME

Create CNAME #151

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: actions/setup-node@v1
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- uses: pnpm/[email protected]
with:
version: 8.6.11
- name: install deps
run: pnpm install
- name: lint
run: pnpm lint
- name: build
run: ./build.sh --no-docs
- name: test
run: pnpm test