From 3968df7015b23c20292b114fe3684bd986fd0449 Mon Sep 17 00:00:00 2001 From: SquidSpirit Date: Sat, 18 Jan 2025 17:21:02 +0800 Subject: [PATCH] BLOG-8 fix: wrong directory --- .gitea/workflows/frontend-ci.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/frontend-ci.yaml b/.gitea/workflows/frontend-ci.yaml index 78e925c..d8a434d 100644 --- a/.gitea/workflows/frontend-ci.yaml +++ b/.gitea/workflows/frontend-ci.yaml @@ -7,19 +7,22 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - + + - name: Change directory + run: cd frontend + - name: Install pnpm uses: pnpm/action-setup@v4 - - name: Install Node.js + - name: Install node.js uses: actions/setup-node@v4 with: node-version: 20 - cache: 'pnpm' - + cache: "pnpm" + - name: Install dependencies run: pnpm install - + - name: ESLint run: pnpm run lint