Skip to content

Feature-sliced configuration 및 CI setup #2

Feature-sliced configuration 및 CI setup

Feature-sliced configuration 및 CI setup #2

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- 'develop/**'
- 'weekly/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout source code
uses: 'actions/checkout@v4'
- name: init yarn
uses: 'actions/setup-node@v4'
with:
node-version: '20'
cache: yarn
- name: yarn berry setup
run: yarn set version berry
- name: install dependencies
run: yarn
- name: run test
run: yarn ci