organize codebase #7
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 # 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 |