diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2022-03-16 09:35:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-16 09:35:45 -0400 |
commit | bfa4ed92bcd119fa5c8fdb6b444b83a092dccca9 (patch) | |
tree | c48dff4abf36ce23e340248480de4b5e97099cb4 | |
parent | 45b3aa22c0adbea5fbfbd572eac172a60b79a5e9 (diff) |
chore: uploading WPT shouldn't make CI fail (#13984)
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fed3e0920..5da0f4d37 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -467,6 +467,7 @@ jobs: --wptreport=wptreport.json - name: Upload wpt results to dl.deno.land + continue-on-error: true if: | runner.os == 'Linux' && matrix.job == 'test' && @@ -481,6 +482,7 @@ jobs: gsutil -h "Cache-Control: no-cache" cp wpt-latest.txt gs://dl.deno.land/wpt-latest.txt - name: Upload wpt results to wpt.fyi + continue-on-error: true if: | runner.os == 'Linux' && matrix.job == 'test' && |