Skip to content

Commit

Permalink
ci: use --force flag when installing eslint
Browse files Browse the repository at this point in the history
Temporary solution for prerelease versions
  • Loading branch information
mdjermanovic committed Dec 29, 2023
1 parent afc3c03 commit 87bad96
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
node-version: 'lts/*'
- name: Install Packages
run: npm install
run: npm install --force
- name: Lint Files
run: node Makefile lint
- name: Check Rule Files
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Install Packages
run: npm install
run: npm install --force
- name: Test
run: node Makefile mocha
- name: Fuzz Test
Expand All @@ -75,7 +75,7 @@ jobs:
with:
node-version: '16'
- name: Install Packages
run: npm install
run: npm install --force
- name: Test
run: node Makefile wdio
- name: Fuzz Test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-readme.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/setup-node@v4

- name: Install npm packages
run: npm install
run: npm install --force

- name: Update README with latest team and sponsor data
run: npm run build:readme
Expand All @@ -26,7 +26,7 @@ jobs:
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<eslint@googlegroups.com>"
- name: Save updated files
run: |
chmod +x ./tools/commit-readme.sh
Expand Down

0 comments on commit 87bad96

Please sign in to comment.