fix(app, labware library): prevent white screen when opening adapter … #5493
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
# Run tests, build components bundle, and deploy it to sandbox | |
name: 'Components test, build, and deploy' | |
on: | |
pull_request: | |
paths: | |
- 'Makefile' | |
- 'components/**' | |
- 'app/**/*.stories.@(js|jsx|ts|tsx)' | |
- 'webpack-config/**' | |
- 'package.json' | |
- '.github/workflows/components-test-build-deploy.yaml' | |
push: | |
paths: | |
- 'components/**' | |
- 'app/**/*.stories.@(js|jsx|ts|tsx)' | |
- 'webpack-config/**' | |
- 'package.json' | |
- '.github/workflows/components-test-build-deploy.yaml' | |
branches: | |
- '**' | |
tags: | |
- 'components*' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.ref_name != 'edge' || github.run_id}}-${{ github.ref_type != 'tag' || github.run_id }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
env: | |
CI: true | |
jobs: | |
js-unit-test: | |
name: 'components unit tests' | |
timeout-minutes: 30 | |
runs-on: 'ubuntu-22.04' | |
steps: | |
- uses: 'actions/checkout@v3' | |
- uses: 'actions/setup-node@v3' | |
with: | |
node-version: '16' | |
- name: 'install udev for usb-detection' | |
run: sudo apt-get update && sudo apt-get install libudev-dev | |
- name: 'cache yarn cache' | |
uses: actions/cache@v3 | |
with: | |
path: | | |
${{ github.workspace }}/.yarn-cache | |
${{ github.workspace }}/.npm-cache | |
key: js-${{ secrets.GH_CACHE_VERSION }}-${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
js-${{ secrets.GH_CACHE_VERSION }}-${{ runner.os }}-yarn- | |
- name: 'setup-js' | |
run: | | |
npm config set cache ./.npm-cache | |
yarn config set cache-folder ./.yarn-cache | |
make setup-js | |
- name: 'run components unit tests' | |
run: | | |
yarn jest --coverage=true --ci=true --collectCoverageFrom="components/src/**/*.(js|ts|tsx)" components/src | |
- name: 'Upload coverage report' | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage/lcov.info | |
flags: components | |
build-components: | |
name: 'build components artifact' | |
runs-on: 'ubuntu-22.04' | |
if: github.event_name != 'pull_request' | |
needs: ['js-unit-test'] | |
steps: | |
- uses: 'actions/checkout@v3' | |
- uses: 'actions/setup-node@v3' | |
with: | |
node-version: '16' | |
- name: 'install udev for usb-detection' | |
run: sudo apt-get update && sudo apt-get install libudev-dev | |
- name: 'cache yarn cache' | |
uses: actions/cache@v3 | |
with: | |
path: | | |
${{ github.workspace }}/.yarn-cache | |
${{ github.workspace }}/.npm-cache | |
key: js-${{ secrets.GH_CACHE_VERSION }}-${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
js-${{ secrets.GH_CACHE_VERSION }}-${{ runner.os }}-yarn- | |
- name: 'setup-js' | |
run: | | |
npm config set cache ./.npm-cache | |
yarn config set cache-folder ./.yarn-cache | |
make setup-js | |
- name: 'build components' | |
run: make -C components | |
- name: 'upload github artifact' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: 'components-artifact' | |
path: storybook-static | |
deploy-components: | |
name: 'deploy components artifact to S3' | |
runs-on: 'ubuntu-22.04' | |
needs: ['js-unit-test', 'build-components'] | |
if: github.event_name != 'pull_request' | |
steps: | |
- uses: 'actions/checkout@v3' | |
# https://github.com/actions/checkout/issues/290 | |
- name: 'Fix actions/checkout odd handling of tags' | |
if: startsWith(github.ref, 'refs/tags') | |
run: | | |
git fetch -f origin ${{ github.ref }}:${{ github.ref }} | |
git checkout ${{ github.ref }} | |
- uses: 'actions/setup-node@v3' | |
with: | |
node-version: '16' | |
- name: 'set complex environment variables' | |
id: 'set-vars' | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const { buildComplexEnvVars } = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/utils.js`) | |
buildComplexEnvVars(core, context) | |
- name: 'download components build' | |
uses: 'actions/download-artifact@v3' | |
with: | |
name: components-artifact | |
path: ./dist | |
- name: 'deploy builds to s3' | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.S3_SANDBOX_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_SANDBOX_SECRET }} | |
AWS_DEFAULT_REGION: us-east-2 | |
run: | | |
aws s3 sync ./dist s3://opentrons-components/${{ env.OT_BRANCH}} --acl public-read |