fix: safearea 제거 (#73) #165
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: CI Test | |
on: | |
push: | |
jobs: | |
test: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: "npm" | |
- name: Install dependencies | |
run: npm ci | |
- name: Inject environment | |
run: | | |
echo "VITE_API_URL=${{ secrets.VITE_API_URL }}" >> .env | |
- name: Run Check | |
run: npm run ci:check | |
- name: Run Tests | |
run: npm run ci:test | |
- name: Run Build | |
run: npm run build |