Skip to content

Commit

Permalink
bring back Node v10 and skip tap-arc in CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
axelpale committed Oct 23, 2024
1 parent ae73a81 commit ac09098
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nudged-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [12, 14, 18, 20, 22]
node-version: [10, 12, 14, 18, 20, 22]

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@
"start": "npm run start:examples_server",
"start:examples_server": "python2.7 -m SimpleHTTPServer 8000",
"test": "npm run test:lint && npm run test:unit",
"test:unit": "node test/index.test.js | tap-arc",
"test:unit": "node test/index.test.js",
"test:pretty": "node test/index.test.js | tap-arc",
"test:lint": "standard index.js 'lib/**/*.js' 'test/**/*.js'",
"test:lint:fix": "standard --fix index.js 'lib/**/*.js' 'test/**/*.js'",
"build:docs": "node doc/gendocs/index.js",
Expand Down

0 comments on commit ac09098

Please sign in to comment.