Skip to content

Commit

Permalink
chore: readme&ci
Browse files Browse the repository at this point in the history
  • Loading branch information
wtto00 committed Sep 15, 2023
1 parent 3ad837d commit fb8eca6
Show file tree
Hide file tree
Showing 6 changed files with 1,264 additions and 373 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: "Test"
on:
pull_request:
push:
branches:
- main

jobs:
BrowserTest:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18]
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: "npm"
- name: Install Dependencies
run: npm ci

- name: Setup JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
- name: Setup Android SDK
uses: amyu/setup-android@v3

- name: Run tests 👩🏽‍💻
run: npm run test
Loading

0 comments on commit fb8eca6

Please sign in to comment.