Skip to content

Commit

Permalink
ci: remove the name for checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
rxri authored Oct 17, 2023
1 parent e0d2e0e commit a014bb9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ jobs:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jobs:
permissions:
contents: write
steps:
- name: Checkout Project
uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down

2 comments on commit a014bb9

@SunsetTechuila
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Better to have a step with any name than no name at all, in my opinion

@theRealPadster
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah same

Please sign in to comment.