Skip to content

Revert "fix bot invite link" #19

Revert "fix bot invite link"

Revert "fix bot invite link" #19

Workflow file for this run

name: Build RevBot Site
on:
push:
paths: ["website/**"]
branches: ["*"]
pull_request:
paths: ["website/**"]
branches: ["*"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: 'recursive'
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install Dependencies
run: |
cd website
npm install
- name: Build Site
run: |
cd website
npm run build