Skip to content

Commit f3cee6f

Browse files
authored
Merge branch 'development' into fix/DX-3705
2 parents 7d03143 + f979f1f commit f3cee6f

File tree

5 files changed

+17
-32
lines changed

5 files changed

+17
-32
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
continue-on-error: true
2121
with:
2222
output: comment, report-markdown
23+
test-script: npm test
24+
skip-step: install
2325
- uses: marocchino/sticky-pull-request-comment@v2
2426
continue-on-error: true
2527
if: steps.coverage-utils-js.outputs.report != ''

.github/workflows/secrets-scan.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.talismanrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ fileignoreconfig:
1010
checksum: 5baabd7d2c391648163f9371f0e5e9484f8fb90fa2284cfc378732ec3192c193
1111
- filename: src/endpoints.ts
1212
checksum: 721a1df93b02d04c1c19a76c171fe2748e4abb1fc3e43452e76fecfd8f384751
13+
- filename: package.json
14+
checksum: 033eb21070795be5b426183f52d784347110fcb724bc9f8d63f94898ac5f0086

CODEOWNERS

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1-
* @contentstack/security-admin
1+
* @contentstack/devex-pr-reviewers
2+
3+
.github/workflows/sca-scan.yml @contentstack/security-admin
4+
5+
.github/workflows/codeql-anaylsis.yml @contentstack/security-admin
6+
7+
**/.snyk @contentstack/security-admin
8+
9+
.github/workflows/policy-scan.yml @contentstack/security-admin
10+
11+
.github/workflows/issues-jira.yml @contentstack/security-admin

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
"clear:reports": "rm -rf reports",
2222
"clear:badges": "rm -rf badges",
2323
"pretest": "npm run build",
24-
"test": "npm run clear:reports && jest --ci --json --coverage --testLocationInResults --outputFile=./reports/report.json",
24+
"test": "npm run clear:reports && pwd && jest --ci --json --coverage --testLocationInResults --outputFile=./reports/report.json",
2525
"test:badges": "npm run clear:badges && npm run test && jest-coverage-badges --input ./reports/coverage/coverage-summary.json --output ./badges",
2626
"test:debug": "jest --watchAll --runInBand",
2727
"prebuild": "rimraf dist && mkdir -p dist/lib && npm run download-regions",
28-
"download-regions": "curl -s --max-time 30 --fail https://artifacts.contentstack.com/regions.json -o dist/lib/regions.json || echo 'Warning: Failed to download regions.json'",
28+
"download-regions": "curl -v --max-time 30 --fail https://artifacts.contentstack.com/regions.json -o dist/lib/regions.json || echo 'Warning: Failed to download regions.json'",
2929
"build": "tsc && rollup -c",
3030
"format": "prettier --write \"src/**/*.ts\"",
3131
"prepare": "husky install && npm run build",

0 commit comments

Comments
 (0)