This commit is contained in:
Leifer Mendez
2022-10-29 20:15:00 +02:00
parent a4d51304b9
commit e24e648e07

View File

@@ -20,13 +20,11 @@ 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: |
if [ -e yarn.lock ]; then if [ -e yarn.lock ]; then
yarn install --frozen-lockfile yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then elif [ -e package-lock.json ]; then
npm ci npm ci
else else
npm i npm i
fi fi
- run: npm run build --if-present
- run: npm run test:io