From 67e4eaddbbcea6885a7f7d3bf0c8a67b95749939 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Thu, 20 Aug 2026 16:41:28 -0600 Subject: [PATCH] Remove pnpm version from CI config It's specified in package.json now --- .gitea/workflows/ci.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 0a0567c..2871fe8 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -20,13 +20,10 @@ jobs: steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 - with: - version: 11 - name: Install Node uses: actions/setup-node@v4 with: node-version: 22 - - name: Install Dependencies run: pnpm install --frozen-lockfile - name: Lint @@ -42,9 +39,6 @@ jobs: steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 - with: - version: 11 - - name: Install Dependencies run: pnpm install --frozen-lockfile - name: Run Tests