From 6957d8895ed6081d8b3471ea608fb38ce3659477 Mon Sep 17 00:00:00 2001 From: Wiktoria Mielcarek <62669899+Braweria@users.noreply.github.com> Date: Fri, 10 Mar 2023 21:24:35 +0100 Subject: [PATCH 1/2] feat: remove post command --- src/v2/commands/index.ts | 2 -- 1 file changed, 2 deletions(-) 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, From 1e41fe565683533da7b738cd5f6a9bf144fba05d Mon Sep 17 00:00:00 2001 From: Wiktoria Mielcarek <62669899+Braweria@users.noreply.github.com> Date: Fri, 10 Mar 2023 21:34:04 +0100 Subject: [PATCH 2/2] ci: setup node to the same version as package.json --- .github/workflows/test.yaml | 3 +++ 1 file changed, 3 insertions(+) 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