This commit is contained in:
Leifer Mendez
2022-10-29 20:17:01 +02:00
parent e24e648e07
commit c05470c045

View File

@@ -20,11 +20,6 @@ jobs:
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
run: | - run: npm install
if [ -e yarn.lock ]; then - run: npm run build --if-present
yarn install --frozen-lockfile - run: npm run test:io
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi