Skip to content

CI

CI #168

Workflow file for this run

name: "CI"
on:
pull_request:
branches:
- "*"
push:
branches:
- "main"
- "master"
schedule:
- cron: "30 12 * * *"
jobs:
test:
runs-on: "ubuntu-22.04"
steps:
- uses: "actions/checkout@v2"
- name: "Install CI dependencies"
run: |
./run ci:install-deps
- name: "Test"
run: |
# Remove volumes in CI to avoid permission errors due to UID / GID.
sed -i "s|.:/app|/tmp:/tmp|g" .env*
sed -i "s|.:/app|/tmp:/tmp|g" compose.yaml
# Django requires static files to be collected in order to run its
# test suite. That means we need to generate production assets from
# esbuild. This line ensures NODE_ENV is set to production.
sed -i "s|export NODE_ENV|#export NODE_ENV|g" .env*
./run ci:test