Implement the "publish-action" action

This commit is contained in:
MaksimZhukov
2021-05-21 19:59:44 +03:00
parent d90d23df2a
commit d8eb8e53b7
22 changed files with 12475 additions and 0 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
}