mirror of
https://github.com/dependabot/fetch-metadata.git
synced 2026-03-12 18:07:12 -04:00
* Upgrade from node16 to node20 node16 is now EOL * Ugrade node and npm versions * Use the GitHub Actions reporter to stop failing on core.setFailure tests * `npm >= 10` requires `node >= 20.5.0` Co-authored-by: Paul <schuette.paul@gmail.com> --------- Co-authored-by: Jeff Widman <jeff@jeffwidman.com> Co-authored-by: Paul <schuette.paul@gmail.com>
8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
transform: {
|
|
'^.+\\.(ts|tsx)?$': 'ts-jest'
|
|
},
|
|
reporters: [['github-actions', {silent: false}], 'summary']
|
|
}
|