diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c25ea1d1..75ae90ed 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -9,6 +9,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16.18.1 - name: Cache npm dependencies uses: actions/cache@v3 diff --git a/src/v2/commands/index.ts b/src/v2/commands/index.ts index d8caec37..5be1c64c 100644 --- a/src/v2/commands/index.ts +++ b/src/v2/commands/index.ts @@ -30,7 +30,6 @@ import { npmInteraction } from './npm/index.js'; import { phpCommand } from './php/index.js'; import { pleaseInteraction } from './please/index.js'; import { pointsHandlers } from './points/index.js'; -import { jobPostCommand } from './post/index.js'; import { resourceInteraction } from './resource/index.js'; // meme commands import { shitpostInteraction } from './shitpost/index.js'; @@ -44,7 +43,6 @@ export const guildCommands = new Map( phpCommand, pleaseInteraction, pointsHandlers, - jobPostCommand, resourceInteraction, shitpostInteraction, npmInteraction,