Added a new menu entry to list tasks #4
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: Continuous Integration | |
on: | |
pull_request: | |
branches: | |
- development | |
jobs: | |
test: | |
name: Test the project | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install the dependencies Node.js | |
run: npm install | |
- name: Build the project | |
run: npm run build | |
- name: Test the project | |
run: npm test |