Unit testing oleeskild changes #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: GitHub Actions | |
run-name: Unit testing ${{ github.actor }} changes | |
on: [push] | |
jobs: | |
"run-unit-tests": | |
name: "Run unit tests" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Use node version" | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
- name: "Install dependencies" | |
run: npm install | |
- name: Run tests | |
run: npm run test |