Skip to content

feat: republish as minor #50

feat: republish as minor

feat: republish as minor #50

Workflow file for this run

name: Install/Build/Lint/Test on PR
'on': pull_request
jobs:
check-pr-is-compliant:
runs-on: ubuntu-latest
steps:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v3
with:
main-branch-name: 'master'
- run: npm ci
- name: Formt Check
run: npx nx format:check
- name: Lint
run: npx nx affected --target=lint --parallel=1
- name: Build
run: npx nx affected --target=build --parallel=1
- name: Test
run: npx nx affected --target=test --parallel=1