Skip to content

feat: Implement Discord OAuth2 flow #24

feat: Implement Discord OAuth2 flow

feat: Implement Discord OAuth2 flow #24

Workflow file for this run

name: Build
on:
push:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: latest
- name: PNPM
uses: pnpm/action-setup@v2
with:
version: latest
- name: Installation
run: pnpm i --frozen-lockfile
- name: Create config
run: |
echo $CONFIG_JSON > ./src/config.json
env:
CONFIG_JSON: ${{ secrets.CONFIG_FILE }}
- name: Check
run: pnpm check
- name: Build
run: pnpm build:tsc
- name: Lint
run: pnpm lint