Skip to content

Commit

Permalink
chore: Refactor deployment workflows to remove unnecessary install step
Browse files Browse the repository at this point in the history
  • Loading branch information
codemile committed Jun 1, 2024
1 parent f96b7fb commit 1cb4d88
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 44 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,6 @@ on:
concurrency: "deploy"

jobs:
install:
runs-on: ubuntu-latest
steps:
- name: "📥 Checkout code"
uses: actions/checkout@v4

- name: "📦 Install dependencies"
uses: reactgular/cache@v1
with:
mode: "install"

build:
needs: [ install ]
uses: ./.github/workflows/build.yml
Expand Down
11 changes: 0 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,6 @@ on:
concurrency: "main"

jobs:
install:
runs-on: ubuntu-latest
steps:
- name: "📥 Checkout code"
uses: actions/checkout@v4

- name: "📦 Install dependencies"
uses: reactgular/cache@v1
with:
mode: "install"

build:
needs: [ install ]
uses: ./.github/workflows/build.yml
11 changes: 0 additions & 11 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,6 @@ concurrency:
cancel-in-progress: true

jobs:
install:
runs-on: ubuntu-latest
steps:
- name: "📥 Checkout code"
uses: actions/checkout@v4

- name: "📦 Install dependencies"
uses: reactgular/cache@v1
with:
mode: "install"

build:
needs: [ install ]
uses: ./.github/workflows/build.yml
11 changes: 0 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,6 @@ on:
concurrency: "release"

jobs:
install:
runs-on: ubuntu-latest
steps:
- name: "📥 Checkout code"
uses: actions/checkout@v4

- name: "📦 Install dependencies"
uses: reactgular/cache@v1
with:
mode: "install"

version:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 1cb4d88

Please sign in to comment.