Skip to content

Bump shell-quote and react-scripts in /risr-app/risr_proj/dashboard-fe #122

Bump shell-quote and react-scripts in /risr-app/risr_proj/dashboard-fe

Bump shell-quote and react-scripts in /risr-app/risr_proj/dashboard-fe #122

Workflow file for this run

name: Continuous Integration
on: [push]
jobs:
lint-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with pylint
run: bash ./lint.sh all
build-python:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: [3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: pytest --ignore=data_utils/query_test.py
lint-build-js:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./risr-app/risr_proj/dashboard-fe
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install modules
run: npm install
- name: Lint with ESLint
run: npm run pretest
- name: Test with Jest and Enzyme
run: npm run test