Skip to content

Commit

Permalink
chore: fix fs-events is causing github actions to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
pleb committed May 4, 2023
1 parent 59c4c0d commit 5d23a09
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions/configure-pages@v1

- name: Restore packages
run: npm ci
run: npm ci -f

- name: Build public website
run: npm run generate-website
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# cache-dependency-path: subdir/package-lock.json

- name: Restore packages
run: npm ci
run: npm ci -f

- name: Lint commit messages
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# cache-dependency-path: subdir/package-lock.json

- name: Restore packages
run: npm ci
run: npm ci -f

- name: Lint commit messages
run: npx commitlint --from ${{ github.event.before }} --to ${{ github.event.head }} --verbose
Expand Down
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "29.4.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"semantic-release": "^21.0.2",
"ts-jest": "^29.1.0",
Expand Down

0 comments on commit 5d23a09

Please sign in to comment.