Skip to content

feat: caching & linking to prof #37

feat: caching & linking to prof

feat: caching & linking to prof #37

Workflow file for this run

name: CI
on:
pull_request:
jobs:
ci:
name: Run - pnpm ${{ matrix.command }}
runs-on: ubuntu-latest
strategy:
matrix:
command: ['typecheck', 'lint', 'build']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: package.json
- run: npm install -g pnpm
- name: Install
shell: sh
run: pnpm i
- name: Run command - ${{ matrix.command }}
run: pnpm ${{ matrix.command }}