Skip to content

Commit c7e8a4a

Browse files
committed
Upgrade .circleci/config.yml
1 parent 24cc300 commit c7e8a4a

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

.circleci/config.yml

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

33
orbs:
4-
codecov: codecov/codecov@3.2.2
5-
node: circleci/node@5.1.0
4+
codecov: codecov/codecov@4.2.0
5+
node: circleci/node@6.2.0
66

77
jobs:
88
tests:
@@ -26,9 +26,11 @@ jobs:
2626
- run: git submodule update --init
2727
- run: sudo apt update
2828
- run: sudo apt install -y rclone
29-
- run: pip install --user tox
29+
- run: pipx install tox
3030
- run: tox -e py310
3131
- codecov/upload
32+
- store_test_results:
33+
path: test-results
3234

3335
tests-ext-theme:
3436
docker:
@@ -50,8 +52,10 @@ jobs:
5052
- run: git submodule update --init
5153
- run: sudo apt update
5254
- run: sudo apt install -y rclone
53-
- run: pip install --user tox
55+
- run: pipx install tox
5456
- run: tox -e ext-theme
57+
- store_test_results:
58+
path: test-results
5559

5660
tests-embedapi:
5761
docker:
@@ -60,9 +64,11 @@ jobs:
6064
- checkout
6165
- run: git submodule sync
6266
- run: git submodule update --init
63-
- run: pip install --user 'tox<4'
67+
- run: pipx install 'tox<4'
6468
- run: tox --version
6569
- run: tox -c tox.embedapi.ini
70+
- store_test_results:
71+
path: test-results
6672

6773
checks:
6874
docker:
@@ -81,7 +87,7 @@ jobs:
8187
- restore_cache:
8288
keys:
8389
- pre-commit-cache-{{ checksum "pre-commit-cache-key.txt" }}
84-
- run: pip install --user 'tox<5'
90+
- run: pipx install 'tox<5'
8591
- run: tox -e pre-commit
8692
- run: tox -e migrations
8793
- node/install:
@@ -94,7 +100,6 @@ jobs:
94100
- ~/.cache/pre-commit
95101

96102
workflows:
97-
version: 2
98103
test:
99104
jobs:
100105
- checks

0 commit comments

Comments
 (0)