Skip to content

chore: remove empty nx dirs (#718) #1317

chore: remove empty nx dirs (#718)

chore: remove empty nx dirs (#718) #1317

Workflow file for this run

name: Continuous Integration Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Increase system files monitor limit
run: sudo sysctl fs.inotify.max_user_watches=524288
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 14
- name: NPM clean install
run: npm ci
- name: Lint workspace and projects
run: npm run lint
- name: Check format
run: npm run format:check