Skip to content

Commit

Permalink
Replaced deprecated --frozen-lockfile option in ESLint Format Checker…
Browse files Browse the repository at this point in the history
… action

The ESLint Format Checker action was using the --frozen-lockfile option (which is deprecated) for installing dependencies with Yarn. This was causing the action to fail, so this commit replaces the option with --immutable.
  • Loading branch information
ZelnickB committed Dec 20, 2020
1 parent 6e597b0 commit 94130e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
check-latest: true

- name: Install dependencies
run: yarn --frozen-lockfile
run: |
echo "Yarn Version: $(yarn --version)"
yarn install --immutable
- name: Run ESLint
run: npx eslint ./

0 comments on commit 94130e7

Please sign in to comment.