Bump postcss from 8.4.16 to 8.4.31 (#484) #474
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
on: | |
push: | |
branches: | |
- "**" | |
name: Dev Build | |
jobs: | |
lint-python: | |
name: Check code style | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Run flake8 & black | |
uses: ./.github/actions/lint | |
test-www: | |
name: Python tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Run Python tests | |
run: docker-compose run --rm web bash -c 'export PIPENV_COLORBLIND=1; export PIPENV_NOSPIN=1; pipenv install --dev && pipenv run ./manage.py test' | |
- name: Validate CSS build | |
run: docker-compose run --rm web bash -c 'npm install && npm run build' |