Skip to content

Switch from yarn@1.22.22 to pnpm@11.0.8 #558

Switch from yarn@1.22.22 to pnpm@11.0.8

Switch from yarn@1.22.22 to pnpm@11.0.8 #558

Workflow file for this run

name: webpack
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Enable Corepack
run: corepack enable
- name: Install
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Format
run: pnpm run pretty:check
- name: Lint
run: pnpm run lint
- name: Test
run: pnpm run test
- name: Build
run: pnpm run build
- name: Typecheck
run: pnpm run ts:check