Bump @types/node from 16.11.60 to 20.11.24 #841
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: 'Tests' | |
on: [push, pull_request] | |
jobs: | |
jest-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: npm ci | |
- name: Test Build | |
run: npm run test_build | |
- name: Checking format | |
run: npm run format-check | |
- name: Linting code | |
run: npm run lint | |
- name: Running jest tests | |
run: npm test | |
- name: Codecov Upload | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage/lcov.info |