Skip to content

report 리스트 페이지 #42

report 리스트 페이지

report 리스트 페이지 #42

Workflow file for this run

name: "Continuous Integration"
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
quality:
name: "CI: Check quality"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: npm install --frozen-lockfile
- name: Check typescript
run: npm run type:check
- name: Check eslint
run: npm run lint