Skip to content

chore: Add prettier configs #16

chore: Add prettier configs

chore: Add prettier configs #16

Workflow file for this run

name: Format & Lint Check
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
lint-check:
strategy:
matrix:
project: [api, client]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "16"
- name: Install Dependencies
run: npm install
working-directory: ${{ matrix.project }}
- name: Format Check
run: npm run format:check
working-directory: ${{ matrix.project }}
- name: Lint Check
run: npm run lint:check
working-directory: ${{ matrix.project }}