Skip to content

Initial scaffold

Initial scaffold #24

Workflow file for this run

name: Project Signals (typescript check, linting & prettier)
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install project dependencies
run: npm ci
- name: Check for typescript errors
run: npm run ts-check
- name: Check for lint errors
run: npm run lint
- name: Check for prettier errors
run: npm run prettier-check
- name: Build the project
run: npm run build
# - name: Ensure the project starts without error
# run: yarn run start
# wait-on: 'http://localhost:3001'