Skip to content

#343 feat(domain) Aggregation Resilience #573

#343 feat(domain) Aggregation Resilience

#343 feat(domain) Aggregation Resilience #573

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: npm ci
- name: Compile
run: npm run compile
- name: Test
run: npm run test
- name: Lint
run: npm run lint