Skip to content

Migrate from NPM to PNPM #5

Migrate from NPM to PNPM

Migrate from NPM to PNPM #5

Workflow file for this run

name: Check for typing or linting errors
on:
pull_request:
types: [opened, synchronize]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
# This is important to fetch the changes to the previous commit
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- run: pnpm install
- name: Check linting
run: pnpm run lint
- name: Check types
run: pnpm run check-types