Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
branches:
- release
- main
- feat/CRC-28/migration
pull_request:
branches:
- release
Expand Down Expand Up @@ -43,7 +42,8 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/run-nx-target
- name: Lint
uses: ./.github/actions/run-nx-target
with:
target: lint
check-spell:
Expand All @@ -55,7 +55,8 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/run-nx-target
- name: Check spell
uses: ./.github/actions/run-nx-target
with:
target: check:spell
check-types:
Expand All @@ -67,7 +68,8 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/run-nx-target
- name: Check types
uses: ./.github/actions/run-nx-target
with:
target: check:types
test-unit:
Expand All @@ -79,7 +81,8 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/run-nx-target
- name: Test unit
uses: ./.github/actions/run-nx-target
with:
target: test:unit
- name: Upload coverage results
Expand All @@ -98,7 +101,8 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/run-nx-target
- name: Build
uses: ./.github/actions/run-nx-target
with:
target: build
test-component:
Expand All @@ -110,6 +114,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/run-nx-target
- name: Test component
uses: ./.github/actions/run-nx-target
with:
target: test:component
2 changes: 1 addition & 1 deletion .github/workflows/contributor-license-agreement.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
path-to-signatures: 'signatures/version1/cla.json'
create-file-commit-message: 'Creating file for storing CLA Signatures'
signed-commit-message: '$contributorName has signed the CLA in $owner/$repo#$pullRequestNo'
path-to-document: 'https://github.com/Telefonica/cross-opensource-template/blob/master/.github/CLA.md'
path-to-document: 'https://github.com/Telefonica/cross-confluence-tools/blob/master/.github/CLA.md'
branch: 'cla-signatures'
# the below is the list of users who are allowed to sign the CLA without any check
# allowlist: user1,bot*
Loading