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 975c0c8 commit 2ba8006Copy full SHA for 2ba8006
.github/workflows/test.yml
@@ -14,14 +14,12 @@ jobs:
14
steps:
15
- uses: actions/checkout@v2
16
- name: Use Node.js ${{ matrix.node-version }}
17
- uses: actions/setup-node@v1
+ uses: actions/setup-node@v3
18
with:
19
node-version: ${{ matrix.node-version }}
20
- run: npm ci
21
- run: npm run lint
22
- - run: npm run test:coverage
23
- if: ${{ matrix.node-version != '18.x' }}
24
+ - run: echo "NODE_OPTIONS=--openssl-legacy-provider" >> $GITHUB_ENV
25
if: ${{ matrix.node-version == '18.x' }}
26
- env:
27
- NODE_OPTIONS: --openssl-legacy-provider
+ - run: npm run test:coverage
+ - run: echo "NODE_OPTIONS=" >> $GITHUB_ENV
0 commit comments