From 2d9c310b2495c22341e8942a9cb85c1db1455cca Mon Sep 17 00:00:00 2001 From: Carlos Azuaje Date: Sat, 22 Jul 2023 01:57:16 -0300 Subject: [PATCH] patch(cicd): update node matrix --- .github/workflows/health.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/health.yml b/.github/workflows/health.yml index 6bb2a2f..b9bd238 100644 --- a/.github/workflows/health.yml +++ b/.github/workflows/health.yml @@ -8,14 +8,14 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x] + node: [16, 18, 20] steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node }} + uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: ${{ matrix.node }} - run: npm install - run: npm run build - run: npm test