Skip to content

fix: OAuth에서 인증 로직 일부를 프론트엔드로 역할 조정 #64

fix: OAuth에서 인증 로직 일부를 프론트엔드로 역할 조정

fix: OAuth에서 인증 로직 일부를 프론트엔드로 역할 조정 #64

Workflow file for this run

name: Run build & test
on:
pull_request:
branches:
- main
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'yarn'
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Run yarn audit
run: yarn audit || true
- name: Install dependencies
run: yarn install
- name: Lint code
run: yarn lint
- name: Run tests
run: yarn test
- name: Build project
run: yarn build