Skip to content

Commit

Permalink
Add automated testing for Node.js 18 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
MajorTanya committed Oct 14, 2023
1 parent f330284 commit c1f70b4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,17 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ 18.x, 20.x ]

steps:
- uses: actions/checkout@v4

- name: Setup Node v20.x
- name: Setup Node v${{ matrix.version }}
uses: actions/setup-node@v3
with:
node-version: 20.x
node-version: ${{ matrix.version }}
cache: "npm"

- name: Clean Install Dependencies
Expand Down

0 comments on commit c1f70b4

Please sign in to comment.