Skip to content

use pnpm here

use pnpm here #222

Workflow file for this run

name: Check PR
on: [pull_request]
jobs:
run-ci:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Run Type Check & Linters
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up pnpm
uses: pnpm/action-setup@v2
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: '18'
cache:'pnpm'

Check failure on line 26 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 26
- name: Install dependencies
run: pnpm install
- name: Check types
run: pnpm type-check
- name: Check linting
run: pnpm lint