Skip to content

ci: fix publish

ci: fix publish #42

Workflow file for this run

name: Main CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node v${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["16.x", "18.x", "20.x"]
os: [ubuntu-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- name: Install deps
run: pnpm install
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test -- --coverage
- name: Build
run: pnpm build
- name: Publint
run: pnpm publint ./