Skip to content

Commit

Permalink
Add CI using GitHubActions
Browse files Browse the repository at this point in the history
  • Loading branch information
JongBeom Lee committed Jan 10, 2024
1 parent e393c5f commit 0f51137
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on:
push:
pull_request:
branches:
- main
paths:
- 'frontend/**'

jobs:
test:
name: Check the source code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install packages
run: npm ci
# - name: Prettier
# run: npm run format
- name: Lint
run: npm run lint

0 comments on commit 0f51137

Please sign in to comment.