Skip to content

feat: user-aut -> Added google auth #37

feat: user-aut -> Added google auth

feat: user-aut -> Added google auth #37

Workflow file for this run

name: Lint and Typecheck
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18.18.0' # Specify your Node.js version
- name: Install dependencies
run: yarn install
- name: Run ESLint
run: yarn lint
- name: Run TypeScript type-check
run: yarn typecheck