Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.

init

init #1

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16.x
- run: pnpm i
- run: pnpm run test
- run: pnpm run build
env:
CI: true