Skip to content

Commit

Permalink
fix: remove unneccesary install step before doing bun add
Browse files Browse the repository at this point in the history
  • Loading branch information
ytkimirti committed Sep 24, 2024
1 parent c1bda5a commit 2182c45
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,7 @@ jobs:
run: bun run build

- name: Install example
run: |
bun install
bun add @upstash/redis@../../
run: bun add @upstash/redis@../../
working-directory: ./examples/vercel-functions-app-router

- name: Build example
Expand Down Expand Up @@ -100,9 +98,7 @@ jobs:
run: bun run build

- name: Install example
run: |
bun install
bun add @upstash/redis@../../
run: bun add @upstash/redis@../../
working-directory: ./examples/vercel-functions-pages-router

- name: Build example
Expand Down Expand Up @@ -255,7 +251,6 @@ jobs:

- name: Install example
run: |
bun install
bun add @upstash/redis@../../
npm install -g wrangler
working-directory: examples/cloudflare-workers
Expand Down Expand Up @@ -348,7 +343,6 @@ jobs:

- name: Install example
run: |
bun install
bun add @upstash/redis@../../
npm install -g wrangler
Expand Down Expand Up @@ -449,7 +443,6 @@ jobs:
- name: Install example
working-directory: ./examples/fastly
run: |
bun install
bun add @upstash/redis@../../
curl -L https://github.com/fastly/cli/releases/download/v1.7.0/fastly_v1.7.0_linux-amd64.tar.gz > fastly.tar.gz
tar -xf ./fastly.tar.gz
Expand Down

0 comments on commit 2182c45

Please sign in to comment.