Skip to content

Commit

Permalink
use node 20 in deploy worker action
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperchupuDev committed Apr 16, 2024
1 parent 48749f3 commit 1c40265
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v3

- name: Install Node 20
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: 20
cache: 'pnpm'

# The wrangler action normally installs a hardcoded version of wrangler.
# This step gets the version we use from package.json.
# See https://github.com/cloudflare/wrangler-action/issues/231#issuecomment-1976018383.
Expand Down
2 changes: 1 addition & 1 deletion src/commands/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ export async function onTestSlashCommand(interaction: APIApplicationCommandInter

export const slashCommandData = new SlashCommandBuilder()
.setName('test')
.setDescription('quick test. if this command doesnt work the bot is likely dead');
.setDescription('quick test. if this command doesnt work the bot is likely dead ');

0 comments on commit 1c40265

Please sign in to comment.