Skip to content

Bufix: pass settings to from Radix to AspectCalculator #3

Bufix: pass settings to from Radix to AspectCalculator

Bufix: pass settings to from Radix to AspectCalculator #3

Workflow file for this run

name: checks
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm run lint
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm run test:coverage
build: # sanity check that build does not throw errors
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm run build