-
Notifications
You must be signed in to change notification settings - Fork 303
44 lines (42 loc) · 1.11 KB
/
ci.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
40
41
42
43
44
name: v3
on:
pull_request:
branches:
- v3
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
e2e:
strategy:
matrix:
os:
- macos-13
- ubuntu-22.04
- windows-2022
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Get Node version from Node manifest
run: echo "NODE_VER=$(curl -s https://nwjs.io/versions | jq -r ".versions[0].components.node")" >> $GITHUB_ENV
- name: Setup Node
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VER }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Check for linting errors
run: npm run lint
- name: Link module
run: npm link nw-builder
- name: Prepare test environment
run: npm run test:prep
- name: Run unit tests
run: npm run test:unit
# - name: Run Tape tests
# run: npm run test:tape
# - name: Run ChromeDriver tests
# run: npm run test:sanity