File tree Expand file tree Collapse file tree 1 file changed +4
-12
lines changed Expand file tree Collapse file tree 1 file changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -41,30 +41,24 @@ jobs:
41
41
steps :
42
42
- name : Checkout repository
43
43
uses : actions/checkout@v4
44
- - name : Install Miniconda
45
- uses : conda-incubator /setup-miniconda@v3
44
+ - name : Install mamba
45
+ uses : mamba-org /setup-micromamba@v2
46
46
with :
47
- miniforge-variant : Mambaforge
48
- miniforge-version : latest
49
- python-version : " 3.11"
50
-
47
+ environment-name : jupyter_ydoc
51
48
- name : Install dependencies
52
49
run : |
53
- mamba install pip nodejs=18
50
+ micromamba install pip nodejs=18
54
51
pip install ".[test]"
55
-
56
52
- name : Build JavaScript assets
57
53
working-directory : javascript
58
54
run : |
59
55
yarn
60
56
yarn build
61
-
62
57
- name : Linter check
63
58
if : ${{ !contains(matrix.os, 'windows') }}
64
59
working-directory : javascript
65
60
run : |
66
61
yarn lint:check
67
-
68
62
- name : Integrity check
69
63
if : ${{ !contains(matrix.os, 'windows') }}
70
64
working-directory : javascript
@@ -76,13 +70,11 @@ jobs:
76
70
echo "Integrity test failed; please run locally 'yarn integrity' and commit the changes"
77
71
exit 1
78
72
fi
79
-
80
73
- name : Run JS tests
81
74
working-directory : javascript
82
75
run : |
83
76
yarn build:test
84
77
yarn test:cov
85
-
86
78
- name : Run Python tests
87
79
run : |
88
80
python -m pytest -v
You can’t perform that action at this time.
0 commit comments