You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Node 18 is the current default Node version in hosted runners, so users may still use the toolkit with it when running tests (see https://github.com/actions/toolkit/issues/1841)
22
22
# Node 20 is the currently support Node version for actions - https://docs.github.com/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions#runsusing-for-javascript-actions
23
-
node-version: [18.x, 20.x]
23
+
node-version: [20.x]
24
24
fail-fast: false
25
25
26
26
runs-on: ${{ matrix.runs-on }}
@@ -44,12 +44,18 @@ jobs:
44
44
run: npm run build
45
45
46
46
- name: npm test
47
-
run: npm test -- --runInBand --forceExit
48
47
env:
49
48
GITHUB_TOKEN: ${{ github.token }}
49
+
run: |
50
+
npx jest --testPathPattern packages/exec/__tests__/exec.test.ts -t "Handles child process holding streams open"
50
51
51
-
- name: Lint
52
-
run: npm run lint
52
+
- name: sysdiagnose
53
+
if: ${{ failure() }}
54
+
run: |
55
+
sudo sysdiagnose -u -f ${RUNNER_TEMP} -A sysdiagnose.tar.gz
0 commit comments