Skip to content

Commit 6d7bef3

Browse files
authored
Update webdriver.yml
1 parent b6ddaab commit 6d7bef3

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/webdriver.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,28 @@ name: WebDriver Mocking
33
on:
44
push:
55
branches:
6-
- master
6+
- 'master'
77
pull_request:
88
branches:
9-
- master
9+
- '**'
1010

1111
jobs:
1212
build:
1313

14-
runs-on: ubuntu-18.04
14+
runs-on: ubuntu-latest
1515

1616
strategy:
1717
matrix:
18-
node-version: [12.x]
18+
node-version: [20.x]
1919

2020
steps:
21-
- uses: actions/checkout@v2
22-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2322
with:
2423
repository: codeceptjs/codeceptjs.git
2524
path: codeceptjs
2625
ref: '3.x'
2726
- name: Use Node.js ${{ matrix.node-version }}
28-
uses: actions/setup-node@v1
27+
uses: actions/setup-node@v3
2928
with:
3029
node-version: ${{ matrix.node-version }}
3130
- run: docker run -d --net=host selenium/standalone-chrome
@@ -41,4 +40,6 @@ jobs:
4140
- run: sleep 5
4241
- name: tests
4342
run: "npx codeceptjs run -c test/codecept.webdriver.conf.js --grep @WebDriver --debug"
44-
43+
44+
45+

0 commit comments

Comments
 (0)