検索結果画面で2回目以降の検索が反映されるように修正 #409
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: CI | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
jobs: | |
packages: | |
name: Packages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
- run: npm ci | |
genApi: | |
name: Generate APIs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
- run: npm ci | |
- run: npm run gen-api | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: apis | |
path: ./src/lib/apis/generated | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
needs: | |
- packages | |
- genApi | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
- run: npm ci | |
- uses: actions/download-artifact@v4 | |
with: | |
name: apis | |
path: ./src/lib/apis/generated | |
- run: npm run build | |
env: | |
NODE_ENV: production | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
needs: | |
- packages | |
- genApi | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
- run: npm ci | |
- uses: actions/download-artifact@v4 | |
with: | |
name: apis | |
path: ./src/lib/apis/generated | |
- run: npm run lint:nofix | |
format: | |
name: Format | |
runs-on: ubuntu-latest | |
needs: | |
- packages | |
- genApi | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
- run: npm ci | |
- uses: actions/download-artifact@v4 | |
with: | |
name: apis | |
path: ./src/lib/apis/generated | |
- run: npm run format:nofix | |
typeCheck: | |
name: Type Check | |
runs-on: ubuntu-latest | |
needs: | |
- packages | |
- genApi | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
- run: npm ci | |
- uses: actions/download-artifact@v4 | |
with: | |
name: apis | |
path: ./src/lib/apis/generated | |
- run: npm run type-check |