Skip to content

Commit

Permalink
Try specTests without silent
Browse files Browse the repository at this point in the history
  • Loading branch information
VisLab committed Sep 3, 2024
1 parent 6b5ed75 commit 7490123
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,14 @@ jobs:
SpecTests:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 'node']

steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up with Node.js ${{ matrix.node-version }}
- name: Set up with Node.js LTS
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: lts/*
- name: Download dependencies
run: npm ci
- name: Test with Node.js ${{ matrix.node-version }}
run: npm test
- name: Test with Node.js LTS
run: npm testSpecs
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"prepublishOnly": "npm run build",
"lint": "eslint ./**/*.js",
"test": "jest --testPathIgnorePatterns=spec_tests",
"testSpecs": "jest --silent --reporters=summary",
"coverage": "jest --coverage --testPathIgnorePatterns=spec_tests spec_tests/jsonNew.spec.js",
"testSpecs": "jest --reporters=summary spec_tests/jsonNew.spec.js",
"coverage": "jest --coverage --testPathIgnorePatterns=spec_tests/*",
"prepare": "husky install"
},
"contributors": [
Expand Down

0 comments on commit 7490123

Please sign in to comment.