build(deps): bump class-variance-authority from 0.7.0 to 0.7.1 #269
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: Run Jest Tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18" # Updated Node.js version | |
- name: Install dependencies | |
run: npm install | |
- name: Run script for tests | |
run: npm test | |
- name: Run script for test coverage | |
run: npm run test:coverage |