feat: add support for windows and macos jobs

BREAKING CHANGE: The action implementation move from container action to node.js action

Co-authored-by: Romain Lespinasse <romain.lespinasse@gmail.com>
This commit is contained in:
Antoine Méausoone
2020-09-26 09:07:49 +02:00
committed by GitHub
parent 6efa53ebca
commit 13c2f38dad
32 changed files with 16064 additions and 854 deletions

11
jest.config.js Normal file
View File

@@ -0,0 +1,11 @@
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}