Skip to content

chore(deps): bump micromatch and lint-staged in /api #1082

chore(deps): bump micromatch and lint-staged in /api

chore(deps): bump micromatch and lint-staged in /api #1082

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