Skip to content

Merge pull request #8 from cse110-sp24-group31/7-integrate-project-ca… #11

Merge pull request #8 from cse110-sp24-group31/7-integrate-project-ca…

Merge pull request #8 from cse110-sp24-group31/7-integrate-project-ca… #11

Workflow file for this run

name: Project Main Branch Tests # name of the test
on: [push] # the Github Action will activate "on" the event that you "push" to the repo
jobs: # the things being executed
tests: # the name of your status check, will become important when you do branch protection
runs-on: ubuntu-latest # which device on Github's server that you are running the Actions on
steps:
- uses: actions/checkout@v4 # using version 4 of Actions
- name: Install Dependencies
run: npm install
# - name: project card tests
# run: npm test ./__tests__/project-card.test.js # the actual testing line