This commit is contained in:
EthanShoeDev
2025-09-24 04:04:13 -04:00
parent 05b14a428e
commit 89a39fdd63
9 changed files with 455 additions and 62 deletions

View File

@@ -20,8 +20,35 @@ jobs:
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Cache Nix Store
uses: nix-community/cache-nix-action@main
with:
primary-key: ${{ runner.os }}-nix-${{ hashFiles('flake.lock') }}
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Load devShell environment
uses: nicknovitski/nix-develop@main
with:
arguments: .#android-remote
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
uses: ./.github/actions/setup
run: pnpm install
- run: pnpm exec turbo lint:check
# test: