Skip to content

fix(lint): repair eslint flat config (syntax error + declare typescri… #2

fix(lint): repair eslint flat config (syntax error + declare typescri…

fix(lint): repair eslint flat config (syntax error + declare typescri… #2

Workflow file for this run

name: CI
on:
pull_request:
push: { branches: [main] }
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with: { node-version: 20, cache: pnpm }
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm typecheck
- run: pnpm build
- run: pnpm test
- run: pnpm coverage
- run: pnpm check:publish
changeset:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v4
with: { fetch-depth: 0 }
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with: { node-version: 20, cache: pnpm }
- run: pnpm install --frozen-lockfile
- name: Require a changeset
run: pnpm changeset status --since=origin/${{ github.base_ref }}