♻️ SMS 인증 요청 API 분기 (기존유저, 신규 유저) #34
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: OpenAPI Validation | |
on: | |
push: | |
paths: | |
- 'openapi.yaml' | |
pull_request: | |
paths: | |
- 'openapi.yaml' | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '14' | |
- name: Install OpenAPI validator | |
run: npm install -g @apidevtools/swagger-cli | |
- name: Validate OpenAPI specification | |
run: swagger-cli validate openapi.yaml |