Skip to content

feat: OAuth 및 User 모듈 연동 #52

feat: OAuth 및 User 모듈 연동

feat: OAuth 및 User 모듈 연동 #52

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