diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..f075265 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: "CI" + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + test: + name: CI/CD Test + # https://github.com/actions/virtual-environments/ + runs-on: ubuntu-latest + steps: + + - name: 🛎️ Checkout + uses: actions/checkout@v4 + + - name: Dependencies + run: npm ci + + - name: Lint + run: npx eslint meshcore-bot.js