Skip to content

Commit 908bb8e

Browse files
committed
resolve yarn.lock conflicts
2 parents 7eccc4d + 893aa2e commit 908bb8e

File tree

1,117 files changed

+258278
-23741
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,117 files changed

+258278
-23741
lines changed

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,5 @@ opentrons-ai-server/api/storage/
4646
# Leave Markdown formatting alone because some of it is load-bearing for MkDocs.
4747
# Note that this is a Prettier thing, not an ESLint thing. Prettier shares this config file.
4848
/docs/**/*.md
49+
# And ignore non-semantic formatting issues in mkdocs YAML configuration files.
50+
/docs/**/*.yml

.github/actions/js/setup/action.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ runs:
1717
node-version: '22.11.0'
1818
cache: 'yarn'
1919

20+
- name: 'Cache Cypress binary'
21+
id: cache-cypress
22+
uses: actions/cache@v4
23+
with:
24+
path: ~/.cache/Cypress
25+
key: cypress-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
26+
2027
- name: 'Install udev for USB-detection'
2128
if: runner.os == 'Linux'
2229
shell: bash

.github/workflows/analyses-snapshot-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
if-no-files-found: error
125125

126126
execute-tests:
127-
timeout-minutes: 5
127+
timeout-minutes: 15
128128
needs: process-chunk
129129
runs-on: ubuntu-latest
130130
env:
@@ -190,7 +190,7 @@ jobs:
190190
title: 'fix(analyses-snapshot-testing): heal ${{ github.event.pull_request.head.ref }} snapshots'
191191
body: 'This PR was requested on the PR https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }}'
192192
branch: 'analyses-snapshot-testing/heal-${{ github.event.pull_request.head.ref }}'
193-
base: ${{ github.event.pull_request.base.ref }}
193+
base: ${{ github.event.pull_request.head.ref }}
194194

195195
- name: Comment on feature PR
196196
if: always() && steps.create_pull_request.outcome == 'success' && github.event_name == 'pull_request'

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,9 +394,23 @@ jobs:
394394
SLACK_WEBHOOK_URL: ${{ secrets.OT_APP_ROBOTSTACK_SLACK_NOTIFICATION_WEBHOOK_URL }}
395395
_ACCESS_URL: https://${{env._APP_DEPLOY_BUCKET_ROBOTSTACK}}/${{env._APP_DEPLOY_FOLDER_ROBOTSTACK}}
396396

397+
- name: 'backup upload folders before checkout'
398+
run: |
399+
# Move upload folders to temp location to preserve them during checkout
400+
mkdir -p ${{ runner.temp }}/upload_backup
401+
mv to_upload_* ${{ runner.temp }}/upload_backup/ 2>/dev/null || true
397402
- name: 'pull repo for scripts'
398403
uses: 'actions/checkout@v4'
404+
- name: 'restore upload folders after checkout'
405+
run: |
406+
# Restore upload folders from temp location
407+
mv ${{ runner.temp }}/upload_backup/to_upload_* ./ 2>/dev/null || true
399408
- uses: ./.github/actions/js/setup
409+
- name: 'print upload folders contents'
410+
run: |
411+
echo "Test Outputs"
412+
echo "Contents of to_upload_internal-release: $(ls -l ./to_upload_internal-release)"
413+
echo "Contents of to_upload_release: $(ls -l ./to_upload_release)"
400414
- name: 'update internal-releases releases.json'
401415
if: needs.determine-build-type.outputs.type == 'release' && contains(fromJSON(needs.determine-build-type.outputs.variants), 'internal-release')
402416
run: |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list
5454
sudo apt-get update && sudo apt-get install libudev-dev
5555
- name: 'cache yarn cache'
56-
uses: actions/cache@v3
56+
uses: actions/cache@v4
5757
with:
5858
path: |
5959
${{ github.workspace }}/.yarn-cache
@@ -89,7 +89,7 @@ jobs:
8989
sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list
9090
sudo apt-get update && sudo apt-get install libudev-dev
9191
- name: 'cache yarn cache'
92-
uses: actions/cache@v3
92+
uses: actions/cache@v4
9393
with:
9494
path: |
9595
${{ github.workspace }}/.yarn-cache

.github/workflows/g-code-testing-lint-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
with:
6868
project: 'g-code-testing'
6969
- name: 'cache yarn cache'
70-
uses: actions/cache@v3
70+
uses: actions/cache@v4
7171
with:
7272
path: |
7373
${{ github.workspace }}/.npm-cache/_prebuild

.github/workflows/js-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list
6060
sudo apt-get update && sudo apt-get install libudev-dev
6161
- name: 'cache yarn cache'
62-
uses: actions/cache@v3
62+
uses: actions/cache@v4
6363
with:
6464
path: |
6565
${{ github.workspace }}/.yarn-cache

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list
5959
sudo apt-get update && sudo apt-get install libudev-dev
6060
- name: 'cache yarn cache'
61-
uses: actions/cache@v3
61+
uses: actions/cache@v4
6262
with:
6363
path: |
6464
${{ github.workspace }}/.yarn-cache
@@ -101,7 +101,7 @@ jobs:
101101
sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list
102102
sudo apt-get update && sudo apt-get install libudev-dev
103103
- name: 'cache yarn cache'
104-
uses: actions/cache@v3
104+
uses: actions/cache@v4
105105
with:
106106
path: |
107107
${{ github.workspace }}/.yarn-cache
@@ -144,7 +144,7 @@ jobs:
144144
sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list
145145
sudo apt-get update && sudo apt-get install libudev-dev
146146
- name: 'cache yarn cache'
147-
uses: actions/cache@v3
147+
uses: actions/cache@v4
148148
with:
149149
path: |
150150
${{ github.workspace }}/.yarn-cache

.github/workflows/opentrons-ai-client-staging-continuous-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
const { buildComplexEnvVars } = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/utils.js`)
4242
buildComplexEnvVars(core, context)
4343
- name: 'cache yarn cache'
44-
uses: actions/cache@v3
44+
uses: actions/cache@v4
4545
with:
4646
path: |
4747
${{ github.workspace }}/.npm-cache/_prebuild

.github/workflows/opentrons-ai-client-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
const { buildComplexEnvVars } = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/utils.js`)
5757
buildComplexEnvVars(core, context)
5858
- name: 'cache yarn cache'
59-
uses: actions/cache@v3
59+
uses: actions/cache@v4
6060
with:
6161
path: |
6262
${{ github.workspace }}/.npm-cache/_prebuild

0 commit comments

Comments
 (0)