Skip to content

fix: ci test 실행 임시 제외 #2

fix: ci test 실행 임시 제외

fix: ci test 실행 임시 제외 #2

Workflow file for this run

name: CI - NestJS (Yarn)
on:
push:
branches:
- develop
- feature/ci
pull_request:
branches:
- develop
- feature/ci
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
# 임시로 제외
- name: Run Tests
run: yarn test
- name: Build
run: yarn build