payment-gateway/inicis.mdx: iOS에서 계좌이체시 결제가 이뤄지던 앱으로 돌아가기 설정 설명 추가 #549
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
code: | |
runs-on: ubuntu-latest | |
name: Lint code and MDX files | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: "9.0.6" | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- run: pnpm install | |
- run: pnpm typecheck | |
- run: pnpm eslint . | |
env: | |
NODE_OPTIONS: '--loader ts-node/esm' |