Skip to content

Adding the GitHub action and tests #4

Adding the GitHub action and tests

Adding the GitHub action and tests #4

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 13, Col: 3): The identifier 'action execution' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
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"