From 06ae18fb1737e1f986327e71f799199b90ed2cd7 Mon Sep 17 00:00:00 2001 From: Nelson Trindade <48919500+nelsontr@users.noreply.github.com> Date: Fri, 3 Nov 2023 22:51:15 +0000 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 97ac16ca..0959914d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,6 +6,10 @@ jobs: build: runs-on: ubuntu-latest + strategy: + matrix: + node-version: [16, 14.17.1] + steps: - name: Checkout uses: actions/checkout@v4.1.1 @@ -13,7 +17,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4.0.0 with: - node-version: '16' + node-version: ${{ matrix.node-version }} - name: Install client dependencies run: cd client && npm install && cd ..