Skip to content

Commit

Permalink
ci: add sparse checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
limwa committed Jul 16, 2024
1 parent 4912979 commit 3d96571
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pulumi-linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
with:
sparse-checkout: services/pulumi
- name: Move pulumi directory to root
run: mv services/pulumi/** .
run: |
mv services/pulumi/* .
rm -rf services/
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
Expand All @@ -39,7 +41,9 @@ jobs:
with:
sparse-checkout: services/pulumi
- name: Move pulumi directory to root
run: mv services/pulumi/** .
run: |
mv services/pulumi/* .
rm -rf services/
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit 3d96571

Please sign in to comment.