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 75f8f7d commit 317452aCopy full SHA for 317452a
.github/workflows/coverage.yml
@@ -31,13 +31,13 @@ on:
31
NODE_VERSION:
32
description: 'Node Version'
33
required: true
34
- default: '18.x'
+ default: '22.x'
35
permissions:
36
contents: read
37
38
env:
39
- NODE_OPTIONS: '--enable-source-maps'
40
- NODE_VERSION: ${{ inputs.NODE_VERSION || '18.x' }} # using 18 for now since there are coverage issues with newer versions
+ NODE_OPTIONS: '--enable-source-maps' # coverage report is wrong if this in not set.
+ NODE_VERSION: ${{ inputs.NODE_VERSION || '22.x' }}
41
42
jobs:
43
coverage:
0 commit comments