Skip to content

feat: implemented google oauth and merged twitch and github #1

feat: implemented google oauth and merged twitch and github

feat: implemented google oauth and merged twitch and github #1

Workflow file for this run

name: Continuos Integration
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm install
- name: Build packages
run: |
(cd api; npm run build)
(cd api; npm run build:icons)
(cd web; npm run build:ci)