Skip to content

환경설정: msw 설치 및 환경설정 #44

환경설정: msw 설치 및 환경설정

환경설정: msw 설치 및 환경설정 #44

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- develop
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '18'
- run: yarn install
- run: yarn lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '18'
- run: yarn install
- run: CI='false' yarn build