新規登録関連画面のデザインを更新する #148
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 (main) | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
package: | |
name: node package install | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
cache-dependency-path: package-lock.json | |
- run: npm ci | |
build: | |
name: type and build check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
cache-dependency-path: package-lock.json | |
- run: npm ci | |
- run: ./scripts/gen-api.sh development | |
- run: npm run build |