From e00fa33fa766e3f101cdc74af30b0d0a1fe5f710 Mon Sep 17 00:00:00 2001 From: jinddings Date: Tue, 5 Nov 2024 13:49:46 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20chore=20:working=20directo?= =?UTF-8?q?ry=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3694ce22..5e7cb2eb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -33,20 +33,25 @@ jobs: cache-dependency-path: ./BE/package-lock.json - name: Install dependencies + working-directory: ./BE run: npm ci - name: Run tests + working-directory: ./BE run: npm test env: CI: true - name: Run linter + working-directory: ./BE run: npm run lint - name: Build application + working-directory: ./BE run: npm run build - name: Build and Push Docker Image + working-directory: ./BE env: NCP_ACCESS_KEY: ${{ secrets.NCP_ACCESS_KEY }} NCP_SECRET_KEY: ${{ secrets.NCP_SECRET_KEY }}