Skip to content

Commit 688650c

Browse files
committed
fix up PD production build
1 parent f33c484 commit 688650c

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

.github/workflows/pd-test-build-deploy.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ jobs:
100100
run: make -C protocol-designer test-e2e
101101
build-pd:
102102
name: 'build protocol designer artifact'
103-
needs: ['js-unit-test']
103+
# TODO: uncomment code below. doing this to test that PD artifacts build and deploy correctly
104+
# needs: ['js-unit-test']
104105
runs-on: 'ubuntu-22.04'
105106
if: github.event_name != 'pull_request'
106107
steps:
@@ -136,7 +137,8 @@ jobs:
136137
deploy-pd:
137138
name: 'deploy PD artifact to S3'
138139
runs-on: 'ubuntu-22.04'
139-
needs: ['js-unit-test', 'build-pd']
140+
# TODO: uncomment code below. doing this to test that PD artifacts build and deploy correctly
141+
needs: ['build-pd']
140142
if: github.event_name != 'pull_request'
141143
steps:
142144
- uses: 'actions/checkout@v3'

pnpm-lock.yaml

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protocol-designer/package.json

+7
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"@opentrons/step-generation": "link:../step-generation",
2929
"@opentrons/shared-data": "link:../shared-data",
3030
"@types/redux-actions": "2.6.1",
31+
"@types/styled-components": "^5.1.26",
3132
"@types/ua-parser-js": "0.7.36",
3233
"@types/uuid": "8.3.0",
3334
"@typescript-eslint/eslint-plugin": "^6.10.0",
@@ -41,6 +42,7 @@
4142
"i18next": "^19.8.3",
4243
"immer": "9.0.6",
4344
"lodash": "4.17.21",
45+
"mixpanel-browser": "2.22.1",
4446
"query-string": "6.2.0",
4547
"react": "18.2.0",
4648
"react-color": "2.19.3",
@@ -52,8 +54,10 @@
5254
"react-redux": "8.1.2",
5355
"redux": "4.0.5",
5456
"redux-actions": "2.2.1",
57+
"react-popper": "1.0.0",
5558
"redux-thunk": "2.3.0",
5659
"reselect": "4.0.0",
60+
"styled-components": "5.3.6",
5761
"ua-parser-js": "^0.7.23",
5862
"uuid": "3.3.2",
5963
"vite": "5.0.5",
@@ -67,5 +71,8 @@
6771
"postcss-preset-env": "9.3.0",
6872
"postcss-color-mod-function": "3.0.3",
6973
"yup": "1.3.3"
74+
},
75+
"devDependencies": {
76+
"@types/mixpanel-browser": "^2.35.6"
7077
}
7178
}

0 commit comments

Comments
 (0)