Skip to content

chore: update pack

chore: update pack #7

Workflow file for this run

name: build
on: ["push", "pull_request"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: lint
run: |
pnpm lint
- name: build
run: |
pnpm build:ci
- name: test
run: |
pnpm test