fix: フォームの一覧を取得するエンドポイントのoffset、limitの指定を任意にする #240
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 Typespec OpenAPI Definitions | |
on: | |
push: | |
jobs: | |
check-format: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install typespec | |
run: npm install -g @typespec/compiler | |
- name: Cache npm modules | |
uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install node_modules | |
run: npm ci | |
- name: Check format | |
run: tsp format --check "**/*.tsp" |