Adds GHA definition and component tests #40
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2024 Dotanuki Labs | |
# SPDX-License-Identifier: MIT | |
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
quality-checks: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Project Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Check typos on source files | |
uses: dotanuki-labs/github-actions/quality/typos@main | |
- name: Lint Markdown files | |
uses: dotanuki-labs/github-actions/quality/markdown@main | |
- name: Check MIT license on source files | |
uses: dotanuki-labs/github-actions/foss/check-licenses@main | |
with: | |
file-patterns: "*.sh,*.yml" | |
license: "mit" | |
e2e: | |
needs: quality-checks | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Project Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Test scanning standalone Android apk | |
run: ./e2e/pocketcasts-android.sh | |
env: | |
APPSWEEP_API_KEY: ${{ secrets.APPSWEEP_DOTANUKI_POCKETCASTS_ANDROID_KEY }} | |
- name: Test scanning standalone iOS xcarchive | |
run: ./e2e/pocketcasts-ios.sh | |
env: | |
APPSWEEP_API_KEY: ${{ secrets.APPSWEEP_DOTANUKI_POCKETCASTS_IOS_KEY }} | |
- name: Test scanning iOS ipa plus dSyms | |
run: ./e2e/bitwarden-ios.sh | |
env: | |
APPSWEEP_API_KEY: ${{ secrets.APPSWEEP_DOTANUKI_BITWARDEN_IOS_KEY }} | |
- name: Test scanning Android apk plus mappings | |
run: ./e2e/cromite-android.sh | |
env: | |
APPSWEEP_API_KEY: ${{ secrets.APPSWEEP_DOTANUKI_CROMITE_ANDROID_KEY }} | |
component-tests: | |
needs: e2e | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Project Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Prepares fixtures | |
run: ./src/fixtures.sh | |
- name: Component test for iOS GHA | |
uses: ./ | |
with: | |
archive-file: .tmp/pocket-casts-ios.xcarchive | |
- name: Component test for Android GHA | |
uses: ./ | |
with: | |
archive-file: .tmp/pocket-casts-android.apk | |
wait-for-summary: true |