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 c111ea7 commit e93afd3Copy full SHA for e93afd3
.github/actions/prepare/action.yml
@@ -3,13 +3,17 @@ inputs:
3
description: 'Whether to minify the bundle'
4
required: false
5
default: 'false'
6
+ node-version:
7
+ description: 'The version of Node.js to use'
8
+ required: false
9
+ default: 'current'
10
11
runs:
12
using: composite
13
steps:
14
- uses: actions/setup-node@v4
15
with:
- node-version: current
16
+ node-version: ${{ inputs.node-version }}
17
18
#region Build the standard bundle
19
- uses: actions/cache@v3
.github/workflows/e2e-pnp-angular-workflow.yml
@@ -20,6 +20,9 @@ jobs:
20
- uses: actions/checkout@v3
21
22
- uses: ./.github/actions/prepare
23
+ with:
24
+ # TODO: Remove when the issue causing timeouts / crashes in Node.js >= 21 is fixed.
25
+ node-version: 20
26
27
- name: 'Running the integration test'
28
run: |
0 commit comments