Skip to content

Commit

Permalink
Use node 21 (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
wargio committed Jun 30, 2024
1 parent 4f7251f commit e07a3b1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .ci-scripts/ci-eslint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
set -e

## NPM eslint
mkdir node_modules
npm install --save-dev eslint

## NPM test
find ./js -type f -name "*.js" | xargs node_modules/.bin/eslint -c .eslint.config.js
find ./js -type f -name "*.js" | xargs node_modules/.bin/eslint --stats -c ./.eslint.config.js
2 changes: 1 addition & 1 deletion .github/workflows/continuous-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
node-version: "21"
- name: eslint
run: chmod +x .ci-scripts/ci-eslint.sh && .ci-scripts/ci-eslint.sh

Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ build*/
subprojects/libquick*/
*.so
old/
node_modules/
package.json
package-lock.json

0 comments on commit e07a3b1

Please sign in to comment.