-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! chore(ci): set up Lighthouse auditing in CI
- Loading branch information
Showing
1 changed file
with
9 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,21 +76,24 @@ jobs: | |
- 5432:5432 | ||
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
- uses: actions/setup-node@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
node-version: 20 | ||
- name: Install Dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements-test.txt | ||
sudo apt-get install -y gettext | ||
npm install -g @lhci/[email protected] | ||
- name: Migrate database | ||
run: cd app && DB_NAME=term_db DB_USER=sadilar DB_PASSWORD=sadilar python manage.py migrate | ||
run: | | ||
cp .env.testing app/.env | ||
cd app/ | ||
DB_NAME=term_db DB_USER=sadilar DB_PASSWORD=sadilar python manage.py migrate | ||
env: | ||
DJANGO_SETTINGS_MODULE: app.settings | ||
DATABASE_URL: postgres://sadilar:sadilar@localhost:5432/test_db | ||
DATABASE_URL: postgres://sadilar:sadilar@localhost:5432/term_db | ||
- name: Run Lighthouse | ||
run: cd app && lhci autorun |