Skip to content

Commit

Permalink
Change GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
JongBeom Lee committed Jan 10, 2024
1 parent b69bdd2 commit 072e2fa
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,33 @@
name: CI
on:
push:
branches: main
paths:
- "frontend/**"
pull_request:
branches:
- main
paths:
- 'frontend/**'
paths:
- "frontend/**"

jobs:
test:
name: Check the source code
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
env:
working-directory: ./frontend
steps:
- uses: actions/checkout@v2
- name: Move to frontend
run: cd frontend
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install packages
run: npm ci
- name: Prettier
run: npm run prettier
- name: Lint
run: npm run lint


0 comments on commit 072e2fa

Please sign in to comment.