From d756d2e1580cc31d329d3a5394659213a8effab4 Mon Sep 17 00:00:00 2001 From: Cleverson Date: Wed, 18 Dec 2024 23:34:45 -0300 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b30fc2b..7c9d4b3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,10 +19,16 @@ jobs: steps: - name: Setup Checkout - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + uses: actions/checkout@v4 + with: + node-version: 16 + - run: npm ci + - run: npm test + + - name: Setup node + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 16 - run: npm ci - run: npm test