Skip to content

feat:add join group webhook #20

feat:add join group webhook

feat:add join group webhook #20

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
branches:
- main # Trigger the action on pull requests to the main branch
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Build documentation
run: npm run build
- name: Run tests
run: npm test # Replace with your test script if different
- name: Lint check
run: npm run lint
- name: Type checking
run: npm run typecheck