Testing assigning things to constants #37
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: Test Suite | |
on: | |
push: | |
branches: [ "main","dev","Chai-Testing" ] | |
pull_request: | |
branches: [ "main","dev" ] | |
jobs: | |
Test-Player: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
- name: Install dependencies | |
run: npm install | |
- name: Install Chai Library | |
run : npm install --global chai | |
- name: Install Mocha Test Framework | |
run: npm install chai | |
- name: Run Mocha & Chai Tests | |
run: npm run mocha:player | |