feat: upgrade pnpm lock #2
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: Build and release | |
on: | |
push: | |
branches: ["master", "feat/actions"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.16.5' | |
channel: 'stable' | |
- name: Install scripts runtime | |
run: pnpm install | |
- name: Install cargo-ndk | |
run: | | |
cargo install cargo-ndk | |
rustup target add aarch64-linux-android armv7-linux-androideabi x86_64-linux-android i686-linux-android | |
- name: Install flutter dependencies | |
run: flutter pub get | |
- name: Install flutter rust bridge | |
run: cargo install '[email protected]' | |
- name: Generate codes | |
run: pnpm run generate | |
- name: Run tests | |
run: cargo test --verbose | |
- name: Build APK | |
run: pnpm run build:apk |