From 072e2fa06c6a0d72b5e3463877843078a3bf1c46 Mon Sep 17 00:00:00 2001 From: JongBeom Lee Date: Wed, 10 Jan 2024 18:39:42 +0900 Subject: [PATCH] Change GitHub Actions --- .github/workflows/ci.yaml | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ad8e5fe8..aa1d8c7e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 - - \ No newline at end of file