Skip to content

fix(vale): gate publishing on the pinned Vale version, not the manifest file #404

fix(vale): gate publishing on the pinned Vale version, not the manifest file

fix(vale): gate publishing on the pinned Vale version, not the manifest file #404

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm typecheck
- name: Build
run: pnpm build
- name: Test
run: pnpm test
- name: Test workflow scripts
run: node --test .github/scripts/*.test.cjs