Skip to content

fix: remove invalid pnpm config command from workflows #5

fix: remove invalid pnpm config command from workflows

fix: remove invalid pnpm config command from workflows #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 11
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts=false
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build