-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (57 loc) · 1.39 KB
/
test.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
name: 'Test'
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- '**.md'
- '**.yml'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
jobs:
test:
runs-on: ubuntu-latest
name: Test action
steps:
- uses: actions/checkout@v4
name: Checkout code
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
- uses: pCYSl5EDgo/[email protected]
name: Cat for GitHub Actions
id: get_key
with:
path: __tests__/test_key_b64.txt
- uses: ./
name: Sign APK
with:
releaseDir: __tests__/apk
signingKey: ${{ steps.get_key.outputs.text }}
keyAlias: test_key
keyStorePassword: android
keyPassword: android
- uses: ./
name: Sign AAB
with:
releaseDir: __tests__/aab
signingKey: ${{ steps.get_key.outputs.text }}
keyAlias: test_key
keyStorePassword: android
keyPassword: android
- uses: ./
name: Sign APK with custom name
with:
releaseDir: __tests__/apk
signingKey: ${{ steps.get_key.outputs.text }}
keyAlias: test_key
keyStorePassword: android
keyPassword: android
appName: name
appVersion: 1.2.3
appPrefix: pre