fix: remove frozen-lockfile flag and pnpm cache from GitHub Action

This commit is contained in:
Noah Brier
2025-09-17 15:41:14 -04:00
parent ccf37a114b
commit b7c726e83b
+1 -4
View File
@@ -17,17 +17,14 @@ jobs:
- name: Setup pnpm - name: Setup pnpm
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js - name: Setup Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: '20' node-version: '20'
cache: 'pnpm'
- name: Install Dependencies - name: Install Dependencies
run: pnpm install --frozen-lockfile run: pnpm install
- name: Run ESLint - name: Run ESLint
run: pnpm eslint --config .config/eslint.config.js . run: pnpm eslint --config .config/eslint.config.js .