We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1b035e commit cf0e898Copy full SHA for cf0e898
bin/runTests.sh
@@ -16,4 +16,6 @@ set -eEuo pipefail
16
FILES="$(node -e "process.stdout.write(require('node:fs').readdirSync('./', { recursive: true }).filter((e) => {return e.endsWith('.test.ts') && !e.startsWith('node_modules');}).sort().join(' '));")"
17
18
set -x
19
+
20
+# shellcheck disable=SC2086
21
exec node --require ts-node/register --test-reporter spec --test ${FILES}
package.json
@@ -10,6 +10,10 @@
10
"format": "eslint . --fix",
11
"test": "bash ./bin/runTests.sh"
12
},
13
+ "engines": {
14
+ "node": "20.x",
15
+ "npm": "10.x"
+ },
"repository": {
"type": "git",
"url": "https://github.com/google-github-actions/deploy-cloud-functions"
0 commit comments