-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (55 loc) · 1.39 KB
/
build.yaml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check-source:
name: Check Source
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Install packages
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Generate package
run: npm pack
- name: Upload artifact (Package)
uses: actions/upload-artifact@v4
with:
name: package
path: '*.tgz'
- name: prettier
run: npm run prettier:check
- name: eslint
run: npm run eslint:check
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
wdio-version: ['^8.0.0', '^9.0.0']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Force wdio version ${{ matrix.wdio-version }}
run: |
sed -i -e 's/"^8.0.0 || ^9.0.0"/"${{ matrix.wdio-version }}"/g' package.json
- name: Install packages
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm test