Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure support for multiple Node.js versions. #1440

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/re_test-integration-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,17 @@ on:
jobs:
prepare-integration-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node: [14, 16, 18]
name: unit tests on Node ${{ matrix.node }}
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 16.14
node-version: ${{ matrix.node }}

# If this was triggered by a /integration command, check out merge commit
- name: Fork based /integration checkout
Expand Down