Skip to content

feat(utils): deepFlatThenMap 신규 유틸 함수 추가 #578

feat(utils): deepFlatThenMap 신규 유틸 함수 추가

feat(utils): deepFlatThenMap 신규 유틸 함수 추가 #578

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
codecov:
runs-on: ubuntu-latest
steps:
- name: Checkout 🔔
uses: actions/checkout@v4
- run: corepack enable
- name: Node Setup 🔔
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- name: install 🔨
run: yarn install --immutable
- name: build 🔨
run: lerna run build
- name: testing 🚀
run: yarn test
- uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}