Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
yandeu committed May 21, 2023
1 parent 3a2babf commit 773e2ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install Dependencies
run: npm ci
run: npm install

- name: Build Packages
run: npm run build

- name: Run Tests
run: npm test
run: node --experimental-vm-modules node_modules/jest/bin/jest.js --forceExit --detectOpenHandles --silent

- name: Run Prettier
if: matrix.os == 'ubuntu-latest'
Expand Down
4 changes: 2 additions & 2 deletions jest.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = {
collectCoverage: true,
collectCoverageFrom: ['lib/*.js', 'lib/**/*.js', '!lib/dependencies/**', '!lib/bin.js'],
coverageReporters: ['html', 'lcov', 'text'],
maxConcurrency: 4,
maxWorkers: 4,
maxConcurrency: 2,
maxWorkers: 2,
testTimeout: 30_000
}

0 comments on commit 773e2ba

Please sign in to comment.