Merge remote-tracking branch 'origin/tsickert/update-node-20' into tsickert/update-node-20

# Conflicts:
#	dist/index.js
#	dist/index.js.map
#	package-lock.json
#	package.json
#	src/action.ts
This commit is contained in:
tsickert 2024-04-05 09:24:56 +00:00
commit f72e1de0aa
3 changed files with 7 additions and 3 deletions

View file

@ -1,4 +1,4 @@
dist/
lib/
node_modules/
jest.config.js
jest.config.cjs

View file

@ -12,6 +12,7 @@
"eslint-comments/no-use": "off",
"import/no-namespace": "off",
"no-unused-vars": "off",
"sort-imports": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/explicit-member-accessibility": ["error", {"accessibility": "no-public"}],
"@typescript-eslint/no-require-imports": "error",
@ -52,4 +53,4 @@
"es6": true,
"jest/globals": true
}
}
}

View file

@ -5,5 +5,8 @@ module.exports = {
transform: {
'^.+\\.ts$': 'ts-jest'
},
transformIgnorePatterns: [
'node_modules/(?!(axios)/)' // add this line
],
verbose: true
}
}