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

test: set the right version for tests #1330

Merged
merged 3 commits into from Feb 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 3 additions & 7 deletions .github/workflows/test-and-deploy.yml
Expand Up @@ -17,7 +17,9 @@ jobs:
timeout-minutes: 20
strategy:
matrix:
node: [ 6, 7, 8, 10, lts/* ]
node: [ 6, 7, 8, 10, lts ]
env:
version: ${{ matrix.node }}
steps:
- name: Checkout sendgrid-nodejs
uses: actions/checkout@v2
Expand All @@ -28,12 +30,6 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_AUTH_TOKEN }}

- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}

- run: npm install
- name: Run Tests
run: make test-docker

Expand Down