Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/api-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,11 @@ jobs:
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
cache: true

- name: Install dependencies
env:
PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN: ${{ secrets.PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN }}
run: bun install
run: bun install --frozen-lockfile

- name: Run API tests
run: bun run --cwd packages/api test 2>&1 | tee /tmp/api-tests-output.log
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,10 @@ jobs:
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
cache: true
- name: Install dependencies
env:
PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN: ${{ secrets.PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN }}
run: bun install
run: bun install --frozen-lockfile
- name: Run Biome (check mode)
if: ${{ !(github.event_name == 'workflow_dispatch' && inputs.fix == true) }}
run: bun biome check
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ jobs:
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ steps.bun-version.outputs.version }}
cache: true

# Sanity-check that the runner satisfies the repo's engine constraints.
- name: Verify runtime versions
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Install dependencies
env:
PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN: ${{ secrets.PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN }}
run: bun install
run: bun install --frozen-lockfile

- name: Setup Expo
uses: expo/expo-github-action@v8
Expand Down Expand Up @@ -343,7 +343,7 @@ jobs:
- name: Install dependencies
env:
PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN: ${{ secrets.PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN }}
run: bun install
run: bun install --frozen-lockfile

- name: Setup Expo
uses: expo/expo-github-action@v8
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/lighthouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
cache: true

- name: Install dependencies
env:
Expand Down Expand Up @@ -60,7 +59,6 @@ jobs:
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
cache: true

- name: Install dependencies
env:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,11 @@ jobs:
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
cache: true

- name: Install dependencies
env:
PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN: ${{ secrets.PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN }}
run: bun install
run: bun install --frozen-lockfile

- name: Determine target environment
id: env
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ jobs:
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.10
cache: true

- name: Validate release tag and app versions
run: bun .github/scripts/validate-release-version.ts "${{ steps.release_tag.outputs.tag }}"
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/sync-guides-r2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,13 @@ jobs:
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
cache: true

- name: Authenticate with GitHub for private packages
run: |
echo "PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV

- name: Install dependencies
run: bun install
run: bun install --frozen-lockfile
timeout-minutes: 5

- name: Sync guides to R2 bucket
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,11 @@ jobs:
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
cache: true

- name: Install dependencies
env:
PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN: ${{ secrets.PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN }}
run: bun install
run: bun install --frozen-lockfile

- name: Run API unit tests
run: bun run --cwd packages/api test:unit:coverage
Expand All @@ -80,12 +79,11 @@ jobs:
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
cache: true

- name: Install dependencies
env:
PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN: ${{ secrets.PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN }}
run: bun install
run: bun install --frozen-lockfile

- name: Run Expo unit tests
run: bun run --cwd apps/expo test:coverage
Expand Down
Loading
Loading