Skip to content

chore(deps): bump ip from 2.0.0 to 2.0.1 #17

chore(deps): bump ip from 2.0.0 to 2.0.1

chore(deps): bump ip from 2.0.0 to 2.0.1 #17

Workflow file for this run

name: Checks (Lint, Test, Build)
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v2
- uses: actions/setup-node@v3
with:
node-version: "18.x"
cache: "npm"
- run: npm ci
- run: npm run nx -- workspace-lint
- run: npm run nx -- format:check
- run: npm run nx -- affected --target=lint --parallel=3
- run: npm run nx -- affected --target=test --parallel=3 --ci --code-coverage
- run: npm run nx -- affected --target=build --parallel=3