Skip to content
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
1 change: 0 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@
- [ ] Tests for the changes have been added (for bug fixes/features) with 100% code coverage.

**What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)

8 changes: 2 additions & 6 deletions .github/workflows/code-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,12 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: ['22']

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 24
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: 24

- name: Install Dependencies
run: npm install pnpm -g && pnpm install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
uses: actions/checkout@v4

# Setup Node
- name: Use Node.js 22
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24

# DO NOT USE pnpm here, it will cause issues with Docker build
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24

- name: Install pnpm
run: npm install -g pnpm && pnpm install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24

- name: Install Dependencies
run: npm install pnpm -g && pnpm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
node-version: ['20', '22']
node-version: ['20', '22', '24']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22
24
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use an official Node.js image as the base
FROM node:22-alpine
FROM node:24-alpine

# Set working directory
WORKDIR /app
Expand Down
9 changes: 1 addition & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,5 @@
"dist",
"public",
"LICENCE"
],
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"unrs-resolver",
"vue-demi"
]
}
]
}
5 changes: 5 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
minimumReleaseAge: 2880
onlyBuiltDependencies:
- "@swc/core"
- "unrs-resolver"
- "vue-demi"
Loading