Skip to content

OPS: Replacing npmrc creation step #15

OPS: Replacing npmrc creation step

OPS: Replacing npmrc creation step #15

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Setup Node.js (with pnpm cache)
uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "pnpm"
cache-dependency-path: "pnpm-lock.yaml"
- name: Install dependencies (lockfile strict)
run: pnpm install --frozen-lockfile
- name: Run Biome
run: pnpm lint