-
Notifications
You must be signed in to change notification settings - Fork 0
89 lines (83 loc) · 3.21 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
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
84
85
86
87
88
89
name: Wallet Frontend Application CI
on:
pull_request: {}
push:
branches: [ main ]
env:
CI: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
uses: inrupt/typescript-sdk-tools/.github/workflows/reusable-lint.yml@v3
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
node-version: [ "20.x" ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
hw-acceleration-sanity-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
docker build --network=host --tag inrupt-wallet-frontend-ui-tests:test ./Dockerfile.minimal
- run: |
docker run -it \
--env EXPO_PUBLIC_LOGIN_URL="https://datawallet.inrupt.com/oauth2/authorization/wallet-app" \
--env EXPO_PUBLIC_WALLET_API="https://datawallet.inrupt.com" \
# FIXME read these from secrets, this is just for initial testing
--env TEST_ACCOUNT_USERNAME="some-username" \
--env TEST_ACCOUNT_PASSWORD="some-password" \
inrupt-wallet-frontend-ui-tests:test
# ui-tests:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# - uses: actions/setup-java@v4
# with:
# distribution: 'temurin'
# java-version: 17
# cache: 'gradle'
# - run: echo "${{ secrets.ENCRYPTED_KEYSTORE }}" > wallet.keystore.asc
# - run: gpg -d --passphrase "${{ secrets.KEYSTORE_DECRYPTION_KEY }}" --batch wallet.keystore.asc > wallet.keystore
# - run: npm ci
# # Build the test apk to be loaded in the container.
# - run: npx expo prebuild --platform android
# env:
# SIGNING_CONFIG_PATH: ${{ github.workspace }}/android-config/signing-config.gradle
# - run: npx detox build --configuration android.emu.release
# # Build the docker image containing the Android emulator and all the test dependencies.
# - run: |
# docker build --network=host --tag inrupt-wallet-frontend-ui-tests:test .
# # Run the Detox tests in the emulator container.
# - run: |
# docker run -it \
# --env EXPO_PUBLIC_LOGIN_URL="https://datawallet.inrupt.com/oauth2/authorization/wallet-app" \
# --env EXPO_PUBLIC_WALLET_API="https://datawallet.inrupt.com" \
# # FIXME read these from secrets, this is just for initial testing
# --env TEST_ACCOUNT_USERNAME="some-username" \
# --env TEST_ACCOUNT_PASSWORD="some-password" \
# inrupt-wallet-frontend-ui-tests:test
sonarqube:
name: run sonarqube
if: ${{ github.actor != 'dependabot[bot]' }}
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Checking out
uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: SonarQube Scan
uses: kitabisa/[email protected]
with:
host: ${{ secrets.SONARQUBE_HOST }}
login: ${{ secrets.SONARQUBE_DEV_INRUPT_COM_GITHUB_TOKEN }}