Add option to mention roles on event create #38
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: PR Test Build | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.4.x | |
- name: Install dependencies | |
run: npm ci --include dev | |
- name: Tests | |
run: npx jest | |
- name: Build | |
run: npx tsup src/server.ts src/deploy-commands.ts --minify |