Skip to content

Merge pull request #31 from ildecimo/develop #52

Merge pull request #31 from ildecimo/develop

Merge pull request #31 from ildecimo/develop #52

name: ildecimo Review Pulse - App CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Lint
run: SKIP_ENV_VALIDATION=true npm run lint
- name: Build
run: SKIP_ENV_VALIDATION=true npm run build