Skip to content

Merge pull request #10 from juanjotorres90/develop #19

Merge pull request #10 from juanjotorres90/develop

Merge pull request #10 from juanjotorres90/develop #19

Workflow file for this run

name: CI
on:
push:
branches: ['develop', 'main']
pull_request:
branches: ['develop', 'main']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run lint:all --if-present
- run: npm run unit-tests:all --if-present
- run: npm run build:all --if-present