Skip to content

Move npm to pnpm

Move npm to pnpm #31

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
sanity_checks:
name: Sanity Checks
runs-on: ubuntu-latest
steps:
- name: Call Setup Workflow
uses: ./.github/workflows/setup.yml
- name: Install dependencies
run: pnpm install
- name: Run code formatting check
run: pnpm run fmt:check
- name: Run linting
run: pnpm run lint