@naturalcycles/dev-lib 13.34.0 → 13.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,7 @@ const fs = require('fs')
8
8
  const runInIDE = process.argv.includes('--runTestsByPath')
9
9
  const ideIntegrationTest = runInIDE && process.argv.some(a => a.endsWith('.integration.test.ts'))
10
10
  const ideManualTest = runInIDE && process.argv.some(a => a.endsWith('.manual.test.ts'))
11
- const { CI } = process.env
11
+ const { CI, GITHUB_ACTIONS } = process.env
12
12
  const cwd = process.cwd()
13
13
 
14
14
  // Set 'setupFilesAfterEnv' only if it exists
@@ -131,6 +131,7 @@ module.exports = {
131
131
  ancestorSeparator: ' ',
132
132
  },
133
133
  ],
134
+ GITHUB_ACTIONS && 'github-actions', // https://jestjs.io/blog/2022/04/25/jest-28#github-actions-reporter
134
135
  ].filter(Boolean),
135
136
  prettierPath: null, // todo: remove when jest has fixed it https://github.com/jestjs/jest/issues/14305
136
137
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
- "version": "13.34.0",
3
+ "version": "13.35.0",
4
4
  "scripts": {
5
5
  "prepare": "husky install",
6
6
  "tsn-debug": "tsn testScript.ts",