Skip to content

Commit

Permalink
chore: and again github action hell
Browse files Browse the repository at this point in the history
  • Loading branch information
orefalo committed Jun 10, 2024
1 parent 0c9324e commit 5b4827a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ jobs:
run: pnpm install --frozen-lockfile

- name: SvelteKit Sync
run: pnpm exec svelte-kit sync
run: npx exec svelte-kit sync

- name: Lint
run: pnpm run lint

- name: Svelte Sync
if: success() || failure() # Run even if previous failed
run: pnpx exec svelte-kit sync
run: npx exec svelte-kit sync

- name: Svelte Check
if: success() || failure() # Run even if previous failed
Expand All @@ -74,7 +74,7 @@ jobs:
# Install Playwright
- name: Install Playwright
# if: steps.cache.outputs.cache-hit != 'true'
run: pnpx exec playwright install --with-deps
run: npx playwright install --with-deps

# Run Tests
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: pnpm install --frozen-lockfile

- name: Svelte Sync
run: pnpx exec svelte-kit sync
run: npx svelte-kit sync

# Build Frontend
- name: Build Frontend
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packaging-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: pnpm install --frozen-lockfile

- name: SvelteKit Sync
run: pnpm exec svelte-kit sync
run: npx svelte-kit sync

- name: Package the lib
run: pnpm run package
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: pnpm install --frozen-lockfile

- name: SvelteKit Sync
run: pnpm exec svelte-kit sync
run: npx svelte-kit sync

- name: Svelte Package
run: pnpm run package
Expand Down

0 comments on commit 5b4827a

Please sign in to comment.