Skip to content

feat/enable google login/signup with auth0 #105

feat/enable google login/signup with auth0

feat/enable google login/signup with auth0 #105

Workflow file for this run

name: Lint Frontend
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
lint-frontend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
working-directory: frontend
- name: Run lint
run: pnpm exec biome check ./src
working-directory: frontend