Skip to content

fix(C.SI.5.2): add Romentino domain #844

fix(C.SI.5.2): add Romentino domain

fix(C.SI.5.2): add Romentino domain #844

Workflow file for this run

name: Static checks
on:
pull_request:
push:
branches:
- main
jobs:
static-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install modules
run: npm ci
- name: TypeScript
run: npm run type:check
- name: ESLint
run: npm run lint:check
- name: Prettier
run: npm run format:check