Skip to content

Commit

Permalink
YDA-5952: pin JS linter versions in CI
Browse files Browse the repository at this point in the history
So that the lint job doesn't break unexpectedly after
non-backwards-compatible updates to the linting software.
  • Loading branch information
stsnel committed Oct 3, 2024
1 parent 6f506d9 commit cc3340b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ jobs:
with:
node-version: 18

- name: Install standard
- name: Install standard and React plugin for ESlint
run: |
npm install standard --location=global
npm install standard@17.1.2 --location=global
npm install eslint@8.57.1 --location=global
npm install eslint-plugin-react@7.37.1 --location=global
- name: Lint with standard
run: |
Expand Down

0 comments on commit cc3340b

Please sign in to comment.