Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsontr authored Nov 3, 2023
1 parent ccab370 commit 06ae18f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@ jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16, 14.17.1]

steps:
- name: Checkout
uses: actions/checkout@v4.1.1

- 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 ..
Expand Down

0 comments on commit 06ae18f

Please sign in to comment.