test: User Model test cases #120
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: DEV Continuous Integration | |
on: | |
push: | |
branches-ignore: | |
- "main" | |
jobs: | |
BuildApp: | |
runs-on: ubuntu-latest | |
environment: DEV | |
defaults: | |
run: | |
working-directory: ./web | |
steps: | |
- name: Checkout the Repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Dependencies | |
run: yarn | |
- name: Run Test Cases | |
run: yarn test | |
- name: Build the Project | |
run: yarn build |