Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: install kratos-selfservice-ui-node peer deps #3354

Merged
merged 1 commit into from Jun 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Expand Up @@ -188,7 +188,7 @@ jobs:
path: node-ui
- run: |
cd node-ui
npm install
npm install --legacy-peer-deps

- name: Install selfservice-ui-react-nextjs
uses: actions/checkout@v3
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
path: node-ui
- run: |
cd node-ui
npm install
npm install --legacy-peer-deps

- name: Install selfservice-ui-react-nextjs
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/run.sh
Expand Up @@ -98,7 +98,7 @@ prepare() {
if [ -z ${NODE_UI_PATH+x} ]; then
node_ui_dir="$(mktemp -d -t ci-XXXXXXXXXX)/kratos-selfservice-ui-node"
git clone --depth 1 --branch master https://github.com/ory/kratos-selfservice-ui-node.git "$node_ui_dir"
(cd "$node_ui_dir" && npm i && npm run build)
(cd "$node_ui_dir" && npm i --legacy-peer-deps && npm run build)
else
node_ui_dir="${NODE_UI_PATH}"
fi
Expand Down