Skip to content

Commit

Permalink
Merge pull request #2046 from tf/node-18
Browse files Browse the repository at this point in the history
Use Node 18 in CI
  • Loading branch information
tf authored Jan 3, 2024
2 parents a640c60 + ca4f168 commit 1a48e7f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ jobs:
with:
ruby-version: 3.2

- name: Set up Node.js 14
- name: Set up Node.js 18
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 18

# Dependencies

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ jobs:
with:
ruby-version: ${{ matrix.ruby-version }}

- name: Use Node.js 14
- name: Use Node.js 18
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 18

# Dependencies

Expand Down Expand Up @@ -217,10 +217,10 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-
- name: Set up Node.js 14
- name: Set up Node.js 18
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 18

- name: Yarn install
run: |
Expand Down
5 changes: 4 additions & 1 deletion bin/build-packages
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ set -ex
rm -f ./entry_types/scrolled/package/frontend/*

yarn run build
(cd ./entry_types/paged/packages/pageflow-paged-react; yarn install --frozen-lockfile; yarn run build)

(cd ./entry_types/paged/packages/pageflow-paged-react;
yarn install --frozen-lockfile;
NODE_OPTIONS=--openssl-legacy-provider yarn run build)

0 comments on commit 1a48e7f

Please sign in to comment.