Adding the GitHub action and tests #4
Workflow file for this run
This file contains hidden or 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
name: CI | ||
on: | ||
pull_request: | ||
jobs: | ||
unittests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setting up the environment | ||
run: npm install | ||
- name: Running unittests | ||
run: npm run unittests | ||
action execution: | ||
Check failure on line 13 in .github/workflows/ci.yml
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setting up the environment | ||
run: npm install | ||
- name: Testing action execution | ||
uses: ./ | ||
with: | ||
gradlePath: "tests/test.build.gradle" | ||
applicationId: "new-app-id" | ||
debug: true | ||
- name: Verify application ID | ||
run: cat ./tests/test.build.gradle | grep "applicationId" |