start to add some back-end details #6
Workflow file for this run
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] | |
jobs: | |
test-npm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Install npm dependencies | |
run: npm install | |
- name: CSS linting | |
run: npm run lint:css | |
- name: JS linting | |
run: npm run lint:js | |
- name: Prettier | |
run: npm run format | |
- name: JS tests | |
run: npm run test | |
- name: Compile static files | |
run: npm run build:prod | |
test-python: | |
runs-on: ubuntu-latest | |
env: | |
SECRET_KEY: testingsecretkey | |
SECURE_SSL_REDIRECT: false | |
ALLOWED_HOSTS: localhost | |
DATABASE_URL: postgres://postgres:postgres@localhost/postgres | |
BIRDBATH_REQUIRED: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 |