Skip to content

Show Discord channel names and events in startup config #26

Show Discord channel names and events in startup config

Show Discord channel names and events in startup config #26

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build-lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test:ci