Skip to content

Commit 36c3cf9

Browse files
committed
chore(deps): bump cypress
1 parent d490ba1 commit 36c3cf9

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.circleci/config.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
version: 2.1
22

3-
# TODO(DP): cache all the things (yarn, xar, images, ... )
3+
# TODO(DP): cache all the things (yarn [x], xar [ ], images [ ], ... )
4+
# https://discuss.circleci.com/t/caching-apt-get-packages/9076 for 1.0 ubuntu caching (not working on 2.1)
5+
# see https://circleci.com/docs/2.0/browser-testing/?section=examples-and-guides#debugging-browser-tests
46

57
jobs:
68
build:
@@ -23,9 +25,10 @@ jobs:
2325
- v1-deps-{{ .Branch }}-{{ checksum "package.json" }}
2426
- v1-deps-{{ .Branch }}
2527
- v1-deps
28+
# TODO (DP) slim this down
2629
- run: |
2730
sudo apt-get update
28-
sudo apt-get --yes install libx11-dev libxkbfile-dev libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb python-is-python3
31+
sudo apt-get --yes install libx11-dev libxkbfile-dev libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb
2932
3033
# - setup_remote_docker:
3134
# version: 20.10.2
@@ -44,6 +47,9 @@ jobs:
4447
name: Wait for db
4548
command: dockerize -wait http://localhost:8080 -timeout 1m
4649
- run: node --version
50+
- run: |
51+
pyenv versions
52+
pyenv global 3.9.4
4753
- run: python --version
4854
- run: docker ps
4955
- run: yarn install --frozen-lockfile
@@ -56,7 +62,8 @@ jobs:
5662
command: yarn start
5763
background: true
5864
- run:
59-
command: npx cypress run
65+
working_directory: .
66+
command: npx cypress run
6067
no_output_timeout: 1m
6168
workflows:
6269
browser_build:

0 commit comments

Comments
 (0)