File tree 2 files changed +20
-0
lines changed
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+ # name: cypress tests
2
+ # on: [push]
3
+ # jobs:
4
+ # cypress-run:
5
+ # runs-on: ubuntu-latest
6
+ # steps:
7
+ # - name: Checkout
8
+ # uses: actions/checkout@v2
9
+ # - name: Install dependencies
10
+ # run: npm install
11
+ # - name: Update caniuse-lite database
12
+ # run: npx browserslist@latest --update-db
13
+ # - name: Run Cypress tests
14
+ # run: npx cypress run
15
+
1
16
name : cypress tests
2
17
on : [push]
3
18
jobs :
10
25
run : npm install
11
26
- name : Update caniuse-lite database
12
27
run : npx browserslist@latest --update-db
28
+ - name : Install D-Bus
29
+ run : sudo apt-get install -y dbus
30
+ - name : Start D-Bus
31
+ run : sudo service dbus start
13
32
- name : Run Cypress tests
14
33
run : npx cypress run
Original file line number Diff line number Diff line change 19
19
module . exports = ( on , config ) => {
20
20
// `on` is used to hook into various events Cypress emits
21
21
// `config` is the resolved Cypress config
22
+ return config ;
22
23
} ;
You can’t perform that action at this time.
0 commit comments