Skip to content

fix(util): math util 함수의 반복문을 for...of 문으로 수정 #480

fix(util): math util 함수의 반복문을 for...of 문으로 수정

fix(util): math util 함수의 반복문을 for...of 문으로 수정 #480

Workflow file for this run

name: Pull Request
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
jobs:
Build-Test:
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: eslint 🚀
run: yarn eslint packages
- name: typecheck 🚀
run: yarn typecheck
- name: testing 🚀
run: yarn test
- name: document build 🔨
run: yarn build:docs