We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39ec30c commit 0b49d0dCopy full SHA for 0b49d0d
.github/workflows/check-test.yaml
@@ -57,6 +57,13 @@ jobs:
57
- name: Install npm
58
run: npm install -g npm@8
59
60
+ - name: Use [email protected]
61
+ # Default Python (3.12) doesn't have support for distutils
62
+ # https://github.com/nodejs/node-gyp/issues/2869
63
+ uses: actions/setup-python@v4
64
+ with:
65
+ python-version: '3.11'
66
+
67
- name: Install Dependencies
68
run: |
69
# Dependencies are included when installing as npm workspaces will
@@ -81,11 +88,6 @@ jobs:
81
88
run: npm run check-ci -- --stream --since ${SINCE_REF} --exclude-dependents
82
89
shell: bash
83
90
84
- # temporary check
85
- - name: Check saslprep
86
- run: npm explain @mongodb-js/saslprep
87
- shell: bash
-
91
- name: Run Tests
92
run: npm run test-ci -- --stream --since ${SINCE_REF}
93
0 commit comments