Bump react-router and react-router-dom #400
This file contains hidden or 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 and Linting | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Dependendencies | |
run: npm install | |
- name: Running Jest Tests | |
run: npm test --ci | |
- name: Running ESLint | |
run: npm run lint |