Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
fix: temporarily disable bundle reporting (#148)
Browse files Browse the repository at this point in the history
- remove action from the secure-pr workflow

Contributes to: strimzi/strimzi0ui#147

Signed-off-by: Nic Townsend <nictownsend@uk.ibm.com>
  • Loading branch information
nictownsend authored Dec 9, 2020
1 parent 087cdc3 commit 8d00115
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/node-pr-jobs-secure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
run: npm ci
- name: Build
run: npm run build
- name: Upload Master Bundle Report for client and server
run: |
echo "CLIENT_MASTER_REPORT=$(cat generated/bundle-analyser/client-report.json)" >> $GITHUB_ENV
echo "SERVER_MASTER_REPORT=$(cat generated/bundle-analyser/server-report.json)" >> $GITHUB_ENV
# - name: Upload Master Bundle Report for client and server - REMOVED DUE TO https://github.com/strimzi/strimzi-ui/issues/147
# run: |
# echo "CLIENT_MASTER_REPORT=$(cat generated/bundle-analyser/client-report.json)" >> $GITHUB_ENV
# echo "SERVER_MASTER_REPORT=$(cat generated/bundle-analyser/server-report.json)" >> $GITHUB_ENV
- name: Checkout PR Branch
uses: actions/checkout@v2
with:
Expand All @@ -38,12 +38,12 @@ jobs:
npm run addDevCerts
- name: Build
run: npm run build
- name: Calculate bundle size
id: bundle
uses: ./.github/actions/bundle
with:
CLIENT_MASTER_REPORT: ${{ env.CLIENT_MASTER_REPORT }}
SERVER_MASTER_REPORT: ${{ env.SERVER_MASTER_REPORT }}
# - name: Calculate bundle size - REMOVED DUE TO https://github.com/strimzi/strimzi-ui/issues/147
# id: bundle
# uses: ./.github/actions/bundle
# with:
# CLIENT_MASTER_REPORT: ${{ env.CLIENT_MASTER_REPORT }}
# SERVER_MASTER_REPORT: ${{ env.SERVER_MASTER_REPORT }}
- name: Test client code
run: npm run test:jest:client -- --forceExit # force exit in case a test does not clean up after failure
- name: Test server code
Expand Down

0 comments on commit 8d00115

Please sign in to comment.