[fix] 어드민 빌드 환경에서 /events/(id)를 새로고침하면 404 에러가 뜨는 버그 수정 #109
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 lint | |
on: | |
pull_request: | |
branches: | |
- "main" | |
- "dev" | |
jobs: | |
check-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: pull code to computer | |
uses: actions/checkout@v4 | |
- name: install node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: check lint | |
run: | | |
npm install | |
npm run lint | |
echo "You're code is pretty!" |