Skip to content

Commit

Permalink
chore: fix missing checkout in build step
Browse files Browse the repository at this point in the history
  • Loading branch information
zernonia committed Dec 13, 2024
1 parent 166fe8a commit 4823c85
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ runs:
using: composite

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup (Install node & pnpm)
uses: ./.github/actions/setup

Expand All @@ -36,6 +39,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup (Install node & pnpm)
uses: ./.github/actions/setup

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pkg.pr.new.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup (Install node & pnpm)
uses: ./.github/actions/setup

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
deployments: write
name: Publish to Cloudflare Pages
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup (Install node & pnpm)
uses: ./.github/actions/setup

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup (Install node & pnpm)
uses: ./.github/actions/setup

Expand Down

0 comments on commit 4823c85

Please # to comment.