Merge pull request #31 from cse110-sp24-group31/calendar-final #188
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: Project Main Branch Tests | |
on: | |
pull_request: | |
push: | |
jobs: | |
example_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: npm install --save-dev puppeteer jest | |
- name: '[unit test] example' | |
run: npm test ./__tests__/example.test.js | |
unit_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: npm install --save-dev puppeteer jest | |
- name: '[unit test] project cards' | |
run: npm test ./__tests__/ProjectCard.unit.test.js | |
E2E_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: npm install --save-dev puppeteer | |
- name: '[E2E test] project cards' | |
run: npm test ./__tests__/ProjectCard.E2E.test.js --runInBand | |
linting: | |
name: Linting # job name (unique id) | |
runs-on: ubuntu-latest # on which machine to run | |
steps: # list of steps | |
- name: Install NodeJS | |
uses: actions/setup-node@v4 | |
- name: Code Checkout | |
uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: npm ci | |
- name: Code Linting | |
run: npm run lint | |
# code_coverage: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@main | |
# - uses: codecov/codecov-action@v4 | |
# with: | |
# fail_ci_if_error: true # optional (default = false) | |
# flags: unittests # optional | |
# name: codecov-umbrella # optional | |
# token: ${{ secrets.CODECOV_TOKEN }} # required | |
# verbose: true # optional (default = false) |