build(deps): bump react-redux from 8.1.1 to 8.1.2 (#604) #721
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 15.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 15.x | |
- name: Install | |
run: npm ci | |
- name: Start environment | |
run: npm start & | |
- name: Run tests | |
run: npm test | |
- name: Cypress | |
run: $(npm bin)/cypress run |