Skip to content

Commit

Permalink
fix(workflow): update worker-deploy and setup-kv scripts
Browse files Browse the repository at this point in the history
Update to use oven-sh/setup-bun@v2 and correct the script path in package.json.
  • Loading branch information
gentlementlegen committed Nov 26, 2024
1 parent a2726d7 commit 1c293d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/worker-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down

0 comments on commit 1c293d8

Please sign in to comment.