feat: 경기 수정 input disable 처리 및 유효성 검사 구현 #353
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check tsc and lint | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- hotfix | |
pull_request: | |
branches: | |
- main | |
- develop | |
- hotfix | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Cache node modules | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install dependencies | |
run: npm install | |
- name: Check tsc | |
run: npx tsc --noEmit | |
- name: Lint | |
run: npx biome check . |