From 1c293d8057bfe13282b7d8a6ec2998b43f6ae995 Mon Sep 17 00:00:00 2001 From: gentlementlegen Date: Tue, 26 Nov 2024 15:55:23 +0900 Subject: [PATCH 1/2] fix(workflow): update worker-deploy and setup-kv scripts Update to use oven-sh/setup-bun@v2 and correct the script path in package.json. --- .github/workflows/worker-deploy.yml | 7 +------ package.json | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/worker-deploy.yml b/.github/workflows/worker-deploy.yml index 1616e5b..3ce42f4 100644 --- a/.github/workflows/worker-deploy.yml +++ b/.github/workflows/worker-deploy.yml @@ -17,12 +17,7 @@ jobs: - name: Check out repository uses: actions/checkout@v4 - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: 20.10.0 - - - uses: oven-sh/setup-bun@v1 + - uses: oven-sh/setup-bun@v2 - name: Run setup script run: | diff --git a/package.json b/package.json index 86a7d0c..e805beb 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "knip-ci": "knip --no-exit-code --reporter json --config .github/knip.ts", "jest:test": "jest --coverage", "plugin:hello-world": "tsx tests/__mocks__/hello-world-plugin.ts", - "setup-kv": "bun --env-file=.dev.vars deploy/setup-kv-namespace.ts", + "setup-kv": "bun --env-file=.dev.vars scripts/setup-kv-namespace.ts", "setup": "tsx ./scripts/setup.ts" }, "keywords": [ From 7fb513ea6104906333dbcc0021c40088686dd0f0 Mon Sep 17 00:00:00 2001 From: gentlementlegen Date: Tue, 26 Nov 2024 15:57:36 +0900 Subject: [PATCH 2/2] chore: update cspell word list Added new words to the cspell configuration for enhanced spell-check. --- .cspell.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.cspell.json b/.cspell.json index b0c80a1..ce50f46 100644 --- a/.cspell.json +++ b/.cspell.json @@ -4,7 +4,8 @@ "ignorePaths": ["**/*.json", "**/*.css", "node_modules", "**/*.log"], "useGitignore": true, "language": "en", - "words": ["dataurl", "devpool", "fkey", "mswjs", "outdir", "servedir", "supabase", "typebox", "ubiquity-os", "smee", "tomlify", "hono", "cfworker"], + "words": ["dataurl", "devpool", "fkey", "mswjs", "outdir", "servedir", "supabase", "typebox", "ubiquity-os", + "smee", "tomlify", "hono", "cfworker", "pavlovcik", "ghijklmnopqrstuvwxyz", "GHIJKLMNOPQRSTUVWXYZ", "ubiquityos"], "dictionaries": ["typescript", "node", "software-terms"], "import": ["@cspell/dict-typescript/cspell-ext.json", "@cspell/dict-node/cspell-ext.json", "@cspell/dict-software-terms"], "ignoreRegExpList": ["[0-9a-fA-F]{6}"]