Skip to content

fix: Do not install dependencies multiple times when testing and linting #6

fix: Do not install dependencies multiple times when testing and linting

fix: Do not install dependencies multiple times when testing and linting #6

Workflow file for this run

name: Lint
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
name: Linter
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v3
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint api
run: pnpm lint api
continue-on-error: true
- name: Lint stitcher
run: pnpm lint stitcher
continue-on-error: true