Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add @sveltejs/kit@2.0.0 support #325

Merged
merged 3 commits into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint and check every commit and pull request
name: Lint and check source code

on:
pull_request:
Expand All @@ -10,7 +10,7 @@ jobs:
check:
strategy:
matrix:
node-version: [18, 20]
node-version: [20]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 15
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test every pull request
name: Test adders

on:
pull_request:
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/website-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build website

on:
pull_request:
branches:
- main

jobs:
build-and-deploy:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org/
- uses: pnpm/action-setup@v2.2.4
with:
version: 8
- run: pnpm install
- run: pnpm -C ./projects/website/ build
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
submodules: recursive
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
- uses: pnpm/action-setup@v2.2.4
with:
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@
"update-packages": "node update-packages.js"
},
"devDependencies": {
"@types/node": "^20.5.7",
"@types/prompts": "^2.4.4",
"eslint": "^8.48.0",
"eslint-config-prettier": "^8.10.0",
"@types/node": "^20.10.4",
"@types/prompts": "^2.4.9",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"latest-version": "^7.0.0",
"npm-check-updates": "^16.13.2",
"prettier": "^2.8.8",
"typescript": "^5.2.2"
"npm-check-updates": "^16.14.12",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
}
}
Loading