Skip to content

Commit

Permalink
Attempt to disentangle node version and env
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon committed Sep 30, 2024
1 parent 1fdd88a commit c697b0d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,18 @@ on:
# Run this workflow for pull requests
pull_request:

env:
NODE_OPTIONS: --openssl-legacy-provider

jobs:
run_tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15.x, 16.x, 18.x, 20.x]
node:
- version: 15.x
- version: 16.x
- version: 18.x
env: NODE_OPTIONS=--openssl-legacy-provider
- version: 20.x
env: NODE_OPTIONS=--openssl-legacy-provider
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down

0 comments on commit c697b0d

Please sign in to comment.