We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f14d194 commit bdf9272Copy full SHA for bdf9272
3 files changed
.github/workflows/ci.yaml
@@ -1,6 +1,9 @@
1
name: continuous-integration
2
3
-on: [push, pull_request]
+on:
4
+ push:
5
+ branches: [master, main]
6
+ pull_request:
7
8
jobs:
9
CI:
.github/workflows/e2e.yml
@@ -32,6 +32,7 @@ jobs:
32
if: steps.playwright-cache.outputs.cache-hit != 'true'
33
34
- name: Run Playwright tests
35
+ continue-on-error: true
36
run: yarn playwright test --project=chromium
37
env:
38
REACT_APP_TESTING_BASE: https://deploy-preview-${{ github.event.pull_request.number }}--tezos-homebase.netlify.app
craco.config.js
@@ -20,7 +20,7 @@ module.exports = {
20
fs: false,
21
};
22
23
- // add persistent cache
+ // persistent cache for faster rebuilds
24
config.cache = {
25
type: "filesystem",
26
buildDependencies: { config: [__filename] },
0 commit comments