Skip to content

Commit

Permalink
Lets try without concurrent-scripts 1
Browse files Browse the repository at this point in the history
  • Loading branch information
robertherber committed Mar 15, 2024
1 parent 5593f10 commit 7251a37
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/autopublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
bun-version: ${{ env.BUN_VERSION }}

- run: HUSKY=0 bun install --concurrent-scripts 1 --ignore-scripts
- run: HUSKY=0 bun install --ignore-scripts
env:
HUSKY: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eas-build-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
cache: ${{ inputs.package_manager }}

- name: Install dependencies (bun)
run: ${{ inputs.package_manager }} install --frozen-lockfile --concurrent-scripts 1
run: ${{ inputs.package_manager }} install --frozen-lockfile
if: ${{ inputs.package_manager == 'bun' }}
working-directory: ${{ inputs.working_directory }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eas-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
cache: ${{ inputs.package_manager }}

- name: Install dependencies (bun)
run: ${{ inputs.package_manager }} install --frozen-lockfile --concurrent-scripts 1
run: ${{ inputs.package_manager }} install --frozen-lockfile
if: ${{ inputs.package_manager == 'bun' }}
working-directory: ${{ inputs.working_directory }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-in-parallel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
cache: ${{ inputs.package_manager }}

- name: Install dependencies (bun)
run: ${{ inputs.package_manager }} install --frozen-lockfile --concurrent-scripts 1
run: ${{ inputs.package_manager }} install --frozen-lockfile
if: ${{ inputs.package_manager == 'bun' }}
working-directory: ${{ inputs.working_directory }}

Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
cache: ${{ inputs.package_manager }}

- name: Install dependencies (bun)
run: ${{ inputs.package_manager }} install --frozen-lockfile --concurrent-scripts 1
run: ${{ inputs.package_manager }} install --frozen-lockfile
if: ${{ inputs.package_manager == 'bun' }}
working-directory: ${{ inputs.working_directory }}

Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ on:
required: false
default: '7.0.4'
type: string

pull_request:

branches:
- main
push:
Expand Down Expand Up @@ -83,7 +85,7 @@ jobs:
key: ${{ runner.os }}-mongodb-${{ inputs.bun-version || env.BUN_VERSION }}-${{ env.MONGOMS_VERSION }}
path: ~/.cache/mongodb-binaries

- run: bun install --concurrent-scripts 1
- run: bun install

- name: Test
run: bun run test-recursive
Expand Down Expand Up @@ -120,7 +122,7 @@ jobs:
key: ${{ runner.os }}-mongodb-${{ inputs.bun-version || env.BUN_VERSION }}-${{ env.MONGOMS_VERSION }}
path: ~/.cache/mongodb-binaries

- run: bun install --concurrent-scripts 1
- run: bun install

- uses: supabase/setup-cli@v1

Expand Down Expand Up @@ -151,7 +153,7 @@ jobs:
with:
bun-version: ${{ inputs.bun-version || env.BUN_VERSION }}

- run: bun install --concurrent-scripts 1 --ignore-scripts
- run: bun install --ignore-scripts

- name: Typecheck
run: bun run typecheck
Expand All @@ -177,7 +179,7 @@ jobs:
with:
bun-version: ${{ inputs.bun-version || env.BUN_VERSION }}

- run: bun install --concurrent-scripts 1 --ignore-scripts
- run: bun install --ignore-scripts

- name: Lint
run: bun run lint
Expand All @@ -202,6 +204,6 @@ jobs:
with:
bun-version: ${{ inputs.bun-version || env.BUN_VERSION }}

- run: bun install --concurrent-scripts 1 --ignore-scripts
- run: bun install --ignore-scripts

- run: bun run graphql-codegen

0 comments on commit 7251a37

Please sign in to comment.