mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-05 22:19:46 -06:00
* chore(deps): update dependency electron to v36.8.1 * bump node version * update workflow files + publish-binary script * bump base-internal images * remove current node version from additional test * bump circleci cache * allow node_version env var * Update .circleci/workflows.yml * index on renovate/electron-36.x:95d10b1d53Merge branch 'develop' into renovate/electron-36.x * index on renovate/electron-36.x:95d10b1d53Merge branch 'develop' into renovate/electron-36.x * index on renovate/electron-36.x:95d10b1d53Merge branch 'develop' into renovate/electron-36.x * bump types/node * update some node versions * update integrity check and electron instrcutions * correctly call net.family with net family type * Revert "correctly call net.family with net family type" This reverts commit505ff949a8. * update location of note types * more clearly type frame * fix type issues in agent.ts file * fix agent call * replace proxyquire in webpack-dev-server package * add changelog --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jennifer Shehane <shehane.jennifer@gmail.com> Co-authored-by: Jennifer Shehane <jennifer@cypress.io> Co-authored-by: cypress-bot[bot] <+cypress-bot[bot]@users.noreply.github.com>
50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
services:
|
|
dev:
|
|
image: cypress/browsers:latest
|
|
ports:
|
|
# Share debugging ports
|
|
- 5566:5566
|
|
- 5567:5567
|
|
environment:
|
|
# Use Hist file from shared volume
|
|
HISTFILE: /root/hist/.bash_history
|
|
# Setup inspect to use the more permissive address when debugging so
|
|
# that we can connect to it from outside the docker container
|
|
CYPRESS_DOCKER_DEV_INSPECT_OVERRIDE: '0.0.0.0:5566'
|
|
# This disables CI mode which causes cypress to build differently
|
|
CI: ''
|
|
command: /bin/bash
|
|
working_dir: /opt/cypress
|
|
volumes:
|
|
# Copy Cypress source to docker container
|
|
- .:/opt/cypress
|
|
- bash-history:/root/hist
|
|
watch:
|
|
image: cypress/browsers:latest
|
|
environment:
|
|
# This disables CI mode which causes cypress to build differently
|
|
CI: ''
|
|
command: yarn watch
|
|
working_dir: /opt/cypress
|
|
volumes:
|
|
# Copy Cypress source to docker container
|
|
- .:/opt/cypress
|
|
ci:
|
|
# This should mirror the image used in workflows.yml
|
|
image: cypress/base-internal:22.18.0-bullseye
|
|
ports:
|
|
- 5566:5566
|
|
- 5567:5567
|
|
command: /bin/bash
|
|
environment:
|
|
HISTFILE: /root/hist/.bash_history
|
|
CYPRESS_DOCKER_DEV_INSPECT_OVERRIDE: '0.0.0.0:5566'
|
|
working_dir: /opt/cypress
|
|
volumes:
|
|
- .:/opt/cypress
|
|
- bash-history:/root/hist
|
|
|
|
# persist terminal history between runs in a virtual volume
|
|
volumes:
|
|
bash-history:
|