Skip to content

Commit

Permalink
Merge pull request #57 from webKrafters/cache-mig
Browse files Browse the repository at this point in the history
Cache mig
  • Loading branch information
steveswork authored Jun 1, 2024
2 parents 89915ce + f91d2f9 commit a442d0b
Show file tree
Hide file tree
Showing 52 changed files with 20,368 additions and 18,275 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [ 12.x, 14.x, 15.x ]
node-version: [ 20.x ]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion docs-dev
Submodule docs-dev updated 118 files
1 change: 0 additions & 1 deletion index.js

This file was deleted.

25 changes: 25 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
collectCoverageFrom: [
'src/**/*.ts'
],
coveragePathIgnorePatterns: [
'src/constants',
'src/test-artifacts',
'src/main/test-apps',
'src/index.ts'
],
globals: {
'ts-jest': {
tsConfig: 'tsconfig.json',
diagnostics: false,
},
},
testEnvironment: 'jsdom',
testEnvironmentOptions: {
url: 'http://localhost/'
},
transform: {
'\\.[jt]sx?$': 'ts-jest'
}
};

Loading

0 comments on commit a442d0b

Please sign in to comment.