Skip to content

Commit 3d15f8b

Browse files
committed
feat: make some existential changes to make CI work again
1 parent e9fd703 commit 3d15f8b

File tree

5 files changed

+443
-185
lines changed

5 files changed

+443
-185
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
persist-credentials: false
1616
- uses: actions/setup-node@v3
1717
with:
18-
node-version: '18'
18+
node-version: '22'
1919
- run: npm ci
2020
- run: npm run generate
2121
env:

encoding-worker/encoding-worker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Handle the actual LZ encoding/decoding
22
import { encode, decode } from './encoding-tools'
33
import {
4-
DecodingWorkerResponse,
5-
EncodingWorkerResponse,
4+
type DecodingWorkerResponse,
5+
type EncodingWorkerResponse,
66
validateMessage,
77
} from './encoding-utils'
88

nuxt.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ export default defineNuxtConfig({
5757
workbox: {
5858
navigateFallback: baseURL,
5959
globPatterns: ['**/*.{js,css,html,png,svg,ico,ttf,woff,woff2}'],
60+
maximumFileSizeToCacheInBytes: 15 * 1024 * 1024, // 15MB
6061
},
6162
client: {
6263
installPrompt: true,

0 commit comments

Comments
 (0)