Skip to content

Commit

Permalink
♻️ refactor using matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mbaye THIAM committed Mar 28, 2024
1 parent 0701d89 commit 612a56e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/units-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,19 @@ on:
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
node-version: ${{ matrix.node-version }}

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm install
Expand Down

0 comments on commit 612a56e

Please sign in to comment.