Skip to content

revert: remove static html support (#33) #238

revert: remove static html support (#33)

revert: remove static html support (#33) #238

Workflow file for this run

name: Android
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version: 16
- name: Set up JDK
uses: actions/[email protected]
with:
distribution: temurin
java-version: 11
- name: Cache /node_modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
- name: Install npm dependencies
run: yarn --frozen-lockfile
shell: bash
- name: Build Android test app
uses: gradle/[email protected]
with:
gradle-version: wrapper
arguments: --no-daemon clean build check test
build-root-directory: example/android
timeout-minutes: 60