Skip to content

Commit

Permalink
Merge pull request #406 from jsconfjp/2024
Browse files Browse the repository at this point in the history
2024年の準備
  • Loading branch information
yosuke-furukawa authored May 9, 2024
2 parents 2c658d4 + 41f9db6 commit 1d0d8d3
Show file tree
Hide file tree
Showing 920 changed files with 57,229 additions and 38 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- master

jobs:
deploy_2023:
deploy_2024:
runs-on: ubuntu-latest
permissions:
pages: write
Expand All @@ -15,8 +15,8 @@ jobs:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
Expand All @@ -26,7 +26,9 @@ jobs:
- run: mv 2019/public dist/2019
- run: mv 2021/public dist/2021
- run: mv 2022/public dist/2022
- run: cd 2023 && npm ci --legacy-peer-deps && npm run build -- --prefix-paths && mv public ../dist/2023
- run: mv 2023/public dist/2023
- run: cd 2024 && npm i && npm run build -- --prefix-paths --verbose && (mv public/2024 ../dist || mkdir ../dist/2024) && cp -r public/* ../dist/2024
- run: find dist
- uses: actions/upload-pages-artifact@v1
with:
path: dist
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@ name: CI
on: [pull_request]

jobs:
build_2023:
build_2024:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
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:
cache-dependency-path: 2024/package-lock.json
- run: cd 2024 && npm ci --legacy-peer-deps
- run: cd 2024 && npm run build -- --prefix-paths
test_2024:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
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
cache-dependency-path: 2024/package-lock.json
- run: cd 2024 && npm ci --legacy-peer-deps
- run: cd 2024 && npm test
2 changes: 1 addition & 1 deletion 2023/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ typings/

# gatsby files
.cache/
public
# public

# Mac files
.DS_Store
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Loading

0 comments on commit 1d0d8d3

Please sign in to comment.