Skip to content

chore(src/locales/ko.json): fix typo in PING_PONG_EMBED message #469

chore(src/locales/ko.json): fix typo in PING_PONG_EMBED message

chore(src/locales/ko.json): fix typo in PING_PONG_EMBED message #469

Workflow file for this run

# Eslint 를 실행합니다
name: Run eslint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Setup node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
-
name: Install dependencies
run: yarn install --production=false
-
name: Run eslint
run: yarn run lint