-
-
Notifications
You must be signed in to change notification settings - Fork 5
39 lines (35 loc) · 1011 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
types: [ opened, synchronize ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14.x, 16.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Setup Node Modules
uses: bahmutov/npm-install@v1
env:
CHROMEDRIVER_FILEPATH: "/usr/bin/chromedriver"
- run: npm run lint
- run: npm test
env:
CI: true
# todo: publish 3.x reports when Serenity/JS 2.x reaches EOL and we switch to v3
# - name: GitHub Pages
# uses: JamesIves/[email protected]
# if: matrix.node-version == '16.x' && github.ref == 'refs/heads/master'
# with:
# BRANCH: gh-pages
# FOLDER: target/site/serenity
# CLEAN: true