fix: add Sveltekit snippet for Svelte 5 #2281
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18.x" | |
cache: pnpm | |
# Get projects set up | |
- run: pnpm install | |
- run: pnpm bootstrap | |
- run: pnpm build | |
# Run any tests | |
- run: pnpm test | |
env: | |
CI: true | |
test-svelte5: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18.x" | |
cache: pnpm | |
# Lets us use one-liner JSON manipulations the package.json files | |
- run: "npm install -g json" | |
# Get projects set up | |
- run: json -I -f package.json -e 'this.pnpm={"overrides":{"svelte":"^5.0.0-next.100"}}' | |
- run: pnpm install --no-frozen-lockfile | |
- run: pnpm bootstrap | |
- run: pnpm build | |
# Run any tests | |
- run: pnpm test | |
env: | |
CI: true | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18.x" | |
cache: pnpm | |
# Get projects set up | |
- run: pnpm install | |
- run: pnpm lint |