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 27845ff commit b3799d5Copy full SHA for b3799d5
azure-pipelines.yml
@@ -8,23 +8,23 @@ pr:
8
- "*"
9
10
pool:
11
- vmImage: "ubuntu-20.04"
+ vmImage: "ubuntu-latest"
12
13
# TODO we don't actually need this for karma or cypress tests
14
# but it let's us use a single job. No need to split up jobs yet
15
strategy:
16
matrix:
17
- # EOL: 2025-04-30
18
- node_18_x:
19
- node_version: 18.x
20
# EOL: 2026-04-30
21
node_20_x:
22
node_version: 20.x
+ # EOL: 2028-04-30
+ node_24_x:
+ node_version: 24.x
23
24
steps:
25
- - task: [email protected]
+ - task: UseNode@1
26
inputs:
27
- versionSpec: $(node_version)
+ version: $(node_version)
28
displayName: "Install Node.js"
29
30
- script: |
0 commit comments