Skip to content

fix ci once and for all #40

fix ci once and for all

fix ci once and for all #40

Workflow file for this run

name: Lint
on: ["push"]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: true
- run: pnpm install --frozen-lockfile
- run: pnpm run build --if-present
- run: pnpm test
- run: pnpm run lint