We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72a0c5e commit 2793b32Copy full SHA for 2793b32
1 file changed
.github/workflows/ci.yml
@@ -19,6 +19,14 @@ jobs:
19
with:
20
node-version: '22.x'
21
- run: npm ci
22
+ - name: Download regions.json
23
+ run: |
24
+ mkdir -p dist/lib
25
+ npm run download-regions
26
+ if [ ! -f dist/lib/regions.json ]; then
27
+ echo "Error: regions.json was not downloaded successfully"
28
+ exit 1
29
+ fi
30
- uses: ArtiomTr/jest-coverage-report-action@v2
31
id: coverage-utils-js
32
continue-on-error: true
0 commit comments