発表時間の表示(長さ)を追加, 発表場所(on-site or remote)の表示を追加, i18nサポート, そのほかデザイン調整 #377
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: [pull_request] | |
jobs: | |
build_2023: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: npm | |
cache-dependency-path: 2023/package-lock.json | |
- run: cd 2023 && npm ci --legacy-peer-deps | |
- run: cd 2023 && npm run build -- --prefix-paths | |
test_2023: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: npm | |
cache-dependency-path: 2023/package-lock.json | |
- run: cd 2023 && npm ci --legacy-peer-deps | |
- run: cd 2023 && npm test |