This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #972 from true-runes/development
v21.0.0
- Loading branch information
Showing
10 changed files
with
1,318 additions
and
992 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ jobs: | |
node-version: ["18.x"] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3.0.2 | ||
uses: actions/checkout@v3.5.2 | ||
- name: Node.js のセットアップ | ||
uses: actions/setup-node@v3 | ||
with: | ||
|
@@ -38,7 +38,7 @@ jobs: | |
run: | | ||
npx cypress info | ||
- name: Cypress を実行する | ||
uses: cypress-io/github-action@v4.1.0 | ||
uses: cypress-io/github-action@v5.6.1 | ||
with: | ||
build: npx next build | ||
start: npx next start --port 3100 | ||
|
@@ -53,13 +53,13 @@ jobs: | |
env: | ||
DEPLOYMENT_ENVIRONMENT: production | ||
- name: Cypress のスクリーンショットをアップロードする | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
if: always() | ||
with: | ||
name: cypress_screenshots | ||
path: cypress/screenshots/ | ||
- name: Cypress の動画をアップロードする | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
if: always() | ||
with: | ||
name: cypress_videos | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
18.2.0 | ||
18.16.0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.16.0 | ||
FROM alpine:3.17.3 | ||
|
||
WORKDIR /tmp | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:18.4.0 | ||
FROM node:20.0.0 | ||
|
||
WORKDIR /app | ||
ARG EnvironmentVariable | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import type { NextPage } from 'next' | ||
|
||
export const RankingTableAndTweetSummary: NextPage = () => { | ||
return ( | ||
<div className="bg-white text-black"> | ||
<div className="hero"> | ||
<div className="hero-content text-center w-full"> | ||
<div className="pb-0 w-full"> | ||
<div className="card bg-white shadow-2xl"> | ||
<div className="items-center card-body bg-white text-black"> | ||
<h2 className="card-title text-2xl">結果</h2> | ||
|
||
<div className="my-1" /> | ||
|
||
<div className="text-left"> | ||
<p className="text-center"> | ||
<a | ||
href="https://gensosenkyo.booth.pm/items/4262247" | ||
className="underline underline-offset-4 text-blue-500 hover:text-blue-900" | ||
target="_blank" | ||
rel="noreferrer" | ||
> | ||
順位表 (PDF on Booth) | ||
</a> | ||
</p> | ||
<div className="mb-4" /> | ||
<p> | ||
<a | ||
href="https://min.togetter.com/oMpk1RZ" | ||
className="underline underline-offset-4 text-blue-500 hover:text-blue-900" | ||
target="_blank" | ||
rel="noreferrer" | ||
> | ||
第一部 開票ツイート まとめ | ||
</a> | ||
</p> | ||
<div className="mb-2" /> | ||
<p> | ||
<a | ||
href="https://min.togetter.com/OG4JD89" | ||
className="underline underline-offset-4 text-blue-500 hover:text-blue-900" | ||
target="_blank" | ||
rel="noreferrer" | ||
> | ||
第二部 開票ツイート まとめ | ||
</a> | ||
</p> | ||
</div> | ||
|
||
<div className="my-1" /> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} |
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
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
Oops, something went wrong.