Skip to content

chore(deps-dev): bump @schematics/angular from 18.1.1 to 18.2.0 #374

chore(deps-dev): bump @schematics/angular from 18.1.1 to 18.2.0

chore(deps-dev): bump @schematics/angular from 18.1.1 to 18.2.0 #374

Workflow file for this run

name: CI
on:
push:
branches: ['master', 'develop']
pull_request:
branches: ['master', 'develop']
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
actions: read
contents: read
checks: write
pull-requests: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v4
with:
main-branch-name: develop
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- run: yarn install
- run: npx nx affected --target=lint --parallel=3
- run: npx nx run-many --target=test --parallel=3 --code-coverage
- run: yarn merge-lcov
- name: Code Coverage
uses: paambaati/codeclimate-action@v8.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageLocations: |
${{github.workspace}}/coverage/lcov.info:lcov
deploy:
if: >
(github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master' || (github.event.pull_request.base.ref == 'develop' && github.event.pull_request.head.repo.full_name == github.repository && github.event.pull_request.user.login == 'valerymelou'))
needs: test
uses: ./.github/workflows/cd.yml
secrets: inherit