Update types for subscribe API #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Corde E2E testing | |
on: [push, workflow_dispatch] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Using Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: "https://registry.npmjs.org" | |
- name: Installing dependencies | |
run: yarn install | |
- name: E2E | |
run: yarn e2e | |
env: | |
TOKEN: ${{ secrets.TOKEN }} | |
MY_TOKEN: ${{ secrets.MY_TOKEN }} | |
BOT_ID: ${{ secrets.BOT_ID }} | |
GUILD_ID: ${{ secrets.GUILD_ID }} | |
CHANNEL_ID: ${{ secrets.CHANNEL_ID }} |