Skip to content

fix: Removed prettier and lint shell scripts #2

fix: Removed prettier and lint shell scripts

fix: Removed prettier and lint shell scripts #2

Workflow file for this run

name: Code Quality
on:
push:
pull_request:
jobs:
api:
runs-on: ubuntu-latest
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
run: eslint "packages/api/src/**/*.ts"
- name: Check Prettier
run: prettier --check "packages/api/src/**/*.ts"
stitcher:
runs-on: ubuntu-latest
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
run: eslint "packages/stitcher/src/**/*.ts"
- name: Check Prettier
run: prettier --check "packages/stitcher/src/**/*.ts"