From d8fc0b0e7a5d8bb7cea62c52d319e51923868c1c Mon Sep 17 00:00:00 2001 From: alpaca-tc Date: Mon, 17 Jun 2024 14:34:58 +0900 Subject: [PATCH] Run build --- .github/workflows/ci_frontend.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/ci_frontend.yml b/.github/workflows/ci_frontend.yml index 3f937f7..c351df9 100644 --- a/.github/workflows/ci_frontend.yml +++ b/.github/workflows/ci_frontend.yml @@ -21,6 +21,8 @@ jobs: with: node-version: 20 cache: 'pnpm' + - name: Install dependencies + run: pnpm install - name: Run lint run: pnpm run lint @@ -35,5 +37,23 @@ jobs: with: node-version: 20 cache: 'pnpm' + - name: Install dependencies + run: pnpm install - name: Run test run: pnpm run test + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup pnpm + uses: pnpm/action-setup@v2 + - name: Set up frontend + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' + - name: Install dependencies + run: pnpm install + - name: Run build + run: pnpm run build