[Snyk] Security upgrade next from 13.5.6 to 14.1.1 #112
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: Unit Tests | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
unit: | |
name: Jest Unit Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- name: Checkout 🔔 | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install | |
run: npm install | |
env: | |
CI: true | |
- name: Unit Tests 🧪 | |
run: npm run test:coverage -- -u | |
env: | |
CI: true | |
- name: Deploy Coverage Report 🚀 | |
#dependabot doesn't get write access | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
target-folder: ${{ github.ref }}/coverage | |
folder: coverage |