Skip to content

Commit

Permalink
Merge branch 'main' into code-size
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxMustermann2 committed Jul 19, 2024
2 parents 34f7d3e + 486e3f2 commit 5a69390
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,14 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '22'
# Node 22.5 has a bug
# https://github.com/nodejs/node/pull/53904
# TODO: Once a version with the bug fix (above) is released,
# the version pin can be moved back to 22
node-version: '22.4'

- name: Clear npm cache
run: npm cache clean --force

- name: Install Solhint
run: npm install --save-dev solhint
Expand Down

0 comments on commit 5a69390

Please sign in to comment.