From e24e648e071f2cea3eb17a4e85c67eb85ef967cd Mon Sep 17 00:00:00 2001 From: Leifer Mendez Date: Sat, 29 Oct 2022 20:15:00 +0200 Subject: [PATCH] update --- .github/workflows/ci.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5720a37..8c3f149 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,13 +20,11 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - run: | - if [ -e yarn.lock ]; then - yarn install --frozen-lockfile - elif [ -e package-lock.json ]; then - npm ci - else - npm i - fi - - run: npm run build --if-present - - run: npm run test:io + run: | + if [ -e yarn.lock ]; then + yarn install --frozen-lockfile + elif [ -e package-lock.json ]; then + npm ci + else + npm i + fi