chore: ci ubuntu #45
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: 'Test' | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
Lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: false | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'pnpm' | |
- name: Install Dependencies | |
run: pnpm install --no-frozen-lockfile | |
- name: Run Lint | |
run: npm run lint | |
# runs-on: macos-latest | |
Test: | |
runs-on: ubuntu-latest | |
needs: Lint | |
strategy: | |
matrix: | |
node: [20] | |
env: | |
GITHUB_CI: true | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: false | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'pnpm' | |
- name: Install Dependencies | |
run: pnpm install --no-frozen-lockfile | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Setup Android SDK | |
uses: amyu/[email protected] | |
- name: Download Emulator | |
run: | | |
URL=https://dl.google.com/android/repository/emulator-linux_x64-10410302.zip | |
TARGET_DIR=~/.android/sdk | |
mkdir -p $TARGET_DIR | |
curl -L $URL -o emulator.zip | |
unzip emulator.zip -d $TARGET_DIR | |
# - name: Enable KVM group perms | |
# run: | | |
# echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
# sudo udevadm control --reload-rules | |
# sudo udevadm trigger --name-match=kvm | |
- name: Run tests 👩🏽💻 | |
run: npm run test |