Skip to content

refactor: adjust v4 site #3598

refactor: adjust v4 site

refactor: adjust v4 site #3598

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 9
run_install: false
- name: Install Dependencies
run: pnpm install --no-frozen-lockfile
- name: Run CI
run: |
# pnpm run lint
# pnpm run test
pnpm run build
# - name: coverall
# if: success()
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}