Skip to content

Commit

Permalink
fix(ci): fixes test failures
Browse files Browse the repository at this point in the history
Bumps versions
  • Loading branch information
kiiwiz committed Feb 4, 2023
1 parent 2ad2a8f commit 37a8dad
Show file tree
Hide file tree
Showing 7 changed files with 14,541 additions and 19,969 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/features.yml
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
- run: npm ci
- run: npm run lint

Expand All @@ -33,6 +33,7 @@ jobs:
strategy:
matrix:
node: [14, 16]
name: test-mysql node ${{ matrix.node }}
services:
mysql:
image: mysql:5.7
Expand All @@ -46,7 +47,7 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
- run: npm ci
- run: npm run test:mysql

Expand All @@ -55,6 +56,7 @@ jobs:
strategy:
matrix:
node: [14, 16]
name: test-postgres node ${{ matrix.node }}
services:
postgres:
image: postgres:13-alpine
Expand All @@ -70,6 +72,6 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
- run: npm ci
- run: npm run test:pg
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions jest.config.js
Expand Up @@ -10,8 +10,8 @@ module.exports = {
// Indicates whether the coverage information should be collected while executing the test
collectCoverage: false,

notify: true,
notifyMode: 'always',
// notify: true,
// notifyMode: 'always',

// The directory where Jest should output its coverage files
coverageDirectory: 'coverage',
Expand Down

0 comments on commit 37a8dad

Please sign in to comment.