File tree 1 file changed +12
-7
lines changed 1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change 16
16
matrix :
17
17
node : [14]
18
18
steps :
19
- - uses : actions/checkout@master
19
+ - name : Checkout
20
+ uses : actions/checkout@v2
20
21
21
22
- name : Setup environment
22
23
id : setups
@@ -51,27 +52,31 @@ jobs:
51
52
- name : Build # Tests to see if a build can succeed
52
53
run : yarn build
53
54
E2E :
54
- runs-on : ubuntu-latest
55
+ runs-on : ubuntu-20.04
55
56
name : e2e
56
57
strategy :
57
58
matrix :
58
59
browser : [chrome, firefox]
59
60
timeout-minutes : 20
60
61
container :
61
- image : cypress/included:10.0.3
62
+ image : cypress/browsers:node14.17.0-chrome88-ff89
62
63
options : --user 1001 --shm-size=2g # @see https://github.com/cypress-io/github-action/issues/104#issuecomment-666047965
63
- env :
64
- CYPRESS_BROWSER : ${{ matrix.browser }}
64
+ # env:
65
+ # CYPRESS_BROWSER: ${{ matrix.browser }}
65
66
steps :
66
- - uses : actions/checkout@v2
67
+ - name : Checkout
68
+ uses : actions/checkout@v2
69
+
67
70
- name : Test E2E
68
- uses : cypress-io/github-action@v2.6.1
71
+ uses : cypress-io/github-action@v4
69
72
with :
70
73
browser : ${{ matrix.browser }}
71
74
env : coverage=true
75
+
72
76
- name : Install code coverage
73
77
run : |-
74
78
yarn global add codecov;
75
79
echo "$(yarn global bin)" >> $GITHUB_PATH;
80
+
76
81
- name : Code coverage
77
82
run : codecov;
You can’t perform that action at this time.
0 commit comments