Issue template rename #62
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: Unified CI/CD Workflow | |
on: | |
push: | |
branches: [ main, dev, FE/**, BE/**, API/** ] | |
pull_request: | |
branches: [ main, dev, FE/**, BE/**, API/** ] | |
jobs: | |
BE-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '19.9.0' | |
- name: Install BE dependencies | |
run: npm install | |
working-directory: be | |
- name: Run ESLint in BE | |
run: npm run lint | |
working-directory: be | |
- name: Run Tests in BE | |
run: npm test | |
working-directory: be |