forked from kenkoooo/AtCoderProblems
-
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.
(一部を除き)CIのworkflowをNode 20を使ったものに更新した。
peaceiris/actions-mdbookはまだ対応したバージョンがリリースされていないため、対応PR (https://github.com/peaceiris/actions-mdbook/pull/500)がマージされるまで保留。 Node 16は2023年9月11にEOLとなり、GitHub ActionsではNode 20の利用が推奨されている。 https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
- Loading branch information
Showing
1 changed file
with
11 additions
and
8 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -8,8 +8,8 @@ on: | |
env: | ||
CARGO_TERM_COLOR: always | ||
RUST_BACKTRACE: 1 | ||
RUST_TEST_THREADS: 1 | ||
CARGO_PROFILE_TEST_DEBUG: 0 | ||
RUST_TEST_THREADS: 1 | ||
SQL_URL: postgres://db_user:db_pass@localhost:5432/test_db | ||
|
||
jobs: | ||
|
@@ -75,27 +75,30 @@ jobs: | |
- name: Use Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 16 # react-scripts 4.x系が対応していないため、Node 16を使う | ||
cache: yarn | ||
cache-dependency-path: ./atcoder-problems-frontend/yarn.lock | ||
node-version: 20 | ||
|
||
- name: Cache Cypress Binary | ||
- name: Cache dependencies | ||
uses: actions/[email protected] | ||
with: | ||
path: | | ||
~/.cache/Cypress | ||
key: ${{ runner.os }}-Cypress-${{ hashFiles('atcoder-problems-frontend/yarn.lock') }} | ||
atcoder-problems-frontend/node_modules | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('atcoder-problems-frontend/yarn.lock') }} | ||
|
||
- name: Install dependencies | ||
run: yarn | ||
|
||
- name: Setup mdBook | ||
uses: peaceiris/[email protected] # https://github.com/peaceiris/actions-mdbook/pull/500 のマージを待つ | ||
uses: peaceiris/[email protected] # https://github.com/peaceiris/actions-mdbook/pull/500 のマージ待ち | ||
with: | ||
mdbook-version: "latest" | ||
|
||
# Node 17でOpenSSLがデフォルトでMD4ハッシュを提供しなくなり、 | ||
# これに依存していたwebpackに依存するreact-scripts 4.x系でのビルドができなくなってしまった。 | ||
# --openssl-legacy-providerをオプションとして渡すことで、Node 17以降でもビルドができる。 | ||
# react-scripts 4.x系から移行したら、このオプションは不要になる。 | ||
- name: build | ||
run: yarn build | ||
run: export NODE_OPTIONS=--openssl-legacy-provider && yarn build | ||
- name: test | ||
run: yarn test | ||
- name: lint | ||
|