bump deps, fixed donut chart #48
Workflow file for this run
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: Jest Automatic Testing | |
on: pull_request | |
jobs: | |
run-jest-tests: | |
name: Jest Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout under $GITHUB_WORKSPACE | |
uses: actions/checkout@v3 | |
- name: Set up NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install all dependencies | |
run: npm install | |
- name: Run Jest Tests | |
run: npm run test |