Add Discord player logging to notify when players join and leave the server #323
Workflow file for this run
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: Docs | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
deploy: | |
name: Docusaurus - Test Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: npm | |
cache-dependency-path: './docusaurus/package-lock.json' | |
- name: Install dependencies | |
run: npm ci --prefix ./docusaurus | |
- name: Build website | |
run: npm run build --prefix ./docusaurus |