Update Front_CI_CD_BUILD_CONFLICT_CHECK.yaml #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Front_CI_CD_BUILD_CONFLICT_CHECK | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- name: Install Dependencies | |
run: npm install | |
- name: Run Build | |
run: npm run build | |
- name: Run Tests | |
run: npm test | |
merge_conflict_job: | |
runs-on: ubuntu-latest | |
name: Find merge conflicts | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Merge Conflict finder | |
uses: olivernybroe/[email protected] |