This commit is contained in:
Leifer Mendez
2022-10-29 20:10:39 +02:00
parent deb238d423
commit 5704300d75

View File

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