Skip to content

feat: 영문 알파벳을 qwerty 자판에 매칭되는 한글로 변환하는 함수 추가 #10

feat: 영문 알파벳을 qwerty 자판에 매칭되는 한글로 변환하는 함수 추가

feat: 영문 알파벳을 qwerty 자판에 매칭되는 한글로 변환하는 함수 추가 #10

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:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- run: yarn install
- run: yarn test
- uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}