From b7c726e83b84c7cd07fed80c13dbe309da45ef14 Mon Sep 17 00:00:00 2001 From: Noah Brier Date: Wed, 17 Sep 2025 15:41:14 -0400 Subject: [PATCH] fix: remove frozen-lockfile flag and pnpm cache from GitHub Action --- .github/workflows/lint.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 203d786..8b8bc14 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,17 +17,14 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 - with: - version: 9 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: '20' - cache: 'pnpm' - name: Install Dependencies - run: pnpm install --frozen-lockfile + run: pnpm install - name: Run ESLint run: pnpm eslint --config .config/eslint.config.js .