We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49d8fa9 commit 6a56f65Copy full SHA for 6a56f65
.github/workflows/superset-frontend.yml
@@ -83,11 +83,12 @@ jobs:
83
- name: npm run test with coverage
84
run: |
85
mkdir -p ${{ github.workspace }}/coverage
86
+ chmod -R 777 ${{ github.workspace }}/coverage
87
docker run \
88
--rm superset-node-${{ github.sha }} \
89
-v ${{ github.workspace }}/coverage:/app/superset-frontend/coverage \
90
bash -c \
- 'npm run test -- --coverage --silent --shard=${{ matrix.shard }}/8 --coverageReporters="json-summary" && find ./coverage'
91
+ 'npm run test -- --coverage --shard=${{ matrix.shard }}/8 --coverageReporters="json-summary" && find ./coverage'
92
find ${{ github.workspace }}/coverage
93
94
- name: Upload coverage artifact
0 commit comments