-
-
Notifications
You must be signed in to change notification settings - Fork 55
50 lines (40 loc) · 979 Bytes
/
smoke-test-windows.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
name: Smoke test on Windows
on:
push:
branches:
- master
pull_request:
env:
HUSKY: 0
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/[email protected]
- name: set up JDK 11
uses: actions/[email protected]
with:
distribution: "temurin"
java-version: 11
- uses: actions/[email protected]
with:
node-version: 18
- name: Environment Information
run: |
node --version
npm --version
java -version
- name: Setup Project
run: |
npm i -g cordova
cordova create lottie-smoke-test
cd lottie-smoke-test
cordova platform add android@10
- name: Install Plugins
run: |
cd lottie-smoke-test
cordova plugin add $env:GITHUB_WORKSPACE --link
- name: Build Project
run: |
cd lottie-smoke-test
cordova build android