Skip to content

feat: admin connection & google login #12

feat: admin connection & google login

feat: admin connection & google login #12

Workflow file for this run

name: Lint
on:
pull_request:
branches: ["*"]
env:
DB_URL: fake
AUTH_SECRET: fake
AUTH_GITHUB_ID: fake
AUTH_GITHUB_SECRET: fake
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Setup Node 20
uses: actions/setup-node@v3
with:
node-version: 20
- name: Setup pnpm
uses: pnpm/action-setup@v2.2.4
with:
version: 8.6.1
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache
uses: actions/cache@v3
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install deps (with cache)
run: pnpm install
- name: Run lint
run: pnpm lint