-
-
Notifications
You must be signed in to change notification settings - Fork 103
83 lines (67 loc) · 1.88 KB
/
build.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Build
on:
pull_request:
paths-ignore:
- '**.md'
- '.github/workflows/**.yml'
- 'res/strings/*.json'
push:
paths-ignore:
- '**.md'
- '.github/workflows/**.yml'
- 'res/strings/*.json'
workflow_dispatch:
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test -- --coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
build:
name: Build platforms
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '8'
- uses: android-actions/setup-android@v2
- name: Fix android build tools cordova issue
run: |
$ANDROID_SDK_ROOT/tools/bin/sdkmanager --uninstall "build-tools;32.0.0"
$ANDROID_SDK_ROOT/tools/bin/sdkmanager --uninstall "build-tools;31.0.0"
$ANDROID_SDK_ROOT/tools/bin/sdkmanager --install "build-tools;30.0.3"
- name: Install cordova
run: |
npm install -g [email protected]
pushd res/android
cordova telemetry off
cordova prepare
popd
- name: Install dependencies
run: npm install
- name: Build platform:chromium
run: npm run build:chromium
- name: Build platform:firefox
run: npm run build:firefox
- name: Build platform:android
run: |
npm run build:android
cd build/android
cordova build android