Skip to content

chore: update pnpm and node action versions in CI workflow #3

chore: update pnpm and node action versions in CI workflow

chore: update pnpm and node action versions in CI workflow #3

Workflow file for this run

name: CI
on:
push:
branches: [main, cli-refactoring]
pull_request:
branches: [main]
# Enforce secure least-privilege permissions
permissions:
contents: read
jobs:
validate:
runs-on: ubuntu-latest
steps:
# Pinned: actions/checkout@v4.2.2
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
# Pinned: pnpm/action-setup@v4.0.0
- name: Install pnpm
uses: pnpm/action-setup@a73af047cccdad2823daf8ff3c61dcea65a8a58f
with:
version: 11.0.9
# Pinned: actions/setup-node@v4.1.0
- name: Setup Node.js
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
with:
node-version: 26.1.0
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Check Formatting
run: pnpm run format:check
- name: Run Linter
run: pnpm run lint
- name: Run Tests
run: pnpm test