Skip to content

feat: add queue and event for the DiscordHivemindAdapter #95

feat: add queue and event for the DiscordHivemindAdapter

feat: add queue and event for the DiscordHivemindAdapter #95

Workflow file for this run

name: Continuous Integration (CI)
on:
pull_request:
types: [opened, synchronize,reopened]
push:
branches:
- main
jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest]
node: ['18', '17']
name: test/node ${{ matrix.node }}/${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run test
- run: npm run build
coverage:
needs: [test]
name: coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '17'
- run: npm install
- run: npm run build
- uses: paambaati/codeclimate-action@v5.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: npm run coverage