removed duplicate Credential Type label below the dates #824
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
name: Android | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js v16 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16.x | |
- run: npm i --legacy-peer-deps | |
- run: ./gradlew assembleDebug -Dorg.gradle.logging.level=info | |
working-directory: android | |
name: Build Android apk (debug) |