Skip to content

Commit a96ff47

Browse files
authored
main.yml
1 parent 840e8d1 commit a96ff47

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3-
name: CI - Chrome
3+
name: CI - Test
44
on:
55
push:
66
branches: [ main ]
77
pull_request:
88
branches: [ main ]
99
jobs:
10-
test:
10+
build:
1111
name: ${{matrix.browser}} - node ${{ matrix.node }} - ${{ matrix.os }}
1212
runs-on: ${{ matrix.os }}
1313
strategy:
14+
fail-fast: false
15+
max-parallel: 2
1416
matrix:
1517
node: [16]
1618
os: [ubuntu-latest, windows-latest]
@@ -23,7 +25,9 @@ jobs:
2325
node-version: ${{ matrix.node }}
2426
cache: 'npm'
2527
- run: npm install
26-
- run: chromedriver --version
28+
- run: |
29+
chromedriver --version
30+
geckodriver --version
2731
- run: npm run test:${{ matrix.browser }}
2832
- uses: actions/upload-artifact@v3
2933
with:

0 commit comments

Comments
 (0)