Skip to content

Commit

Permalink
early checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Mar 24, 2024
1 parent c1121ab commit 14209ec
Show file tree
Hide file tree
Showing 2 changed files with 9 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 @@ -6,9 +6,6 @@ inputs:

runs:
using: composite
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: ${{ inputs.node-version }}
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
timeout-minutes: 2
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/setup
with:
node-version: 18
Expand All @@ -30,6 +33,9 @@ jobs:
- '20'
name: test js - node v${{ matrix.node }}
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node }}
Expand All @@ -49,6 +55,9 @@ jobs:
- '20'
name: test ts - node v${{ matrix.node }}
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node }}
Expand Down

0 comments on commit 14209ec

Please sign in to comment.