Skip to content

Commit

Permalink
Try to fix pipeline dependency installation
Browse files Browse the repository at this point in the history
  • Loading branch information
tygern committed Feb 12, 2025
1 parent a9c3d7c commit 7459690
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/set-up-environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -ex
make install

PGPASSWORD=postgres psql -h localhost postgres -U postgres < databases/drop_and_create_databases.sql
make migrate
make migrate migrate-test

pushd web-components || exit
npm run build
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ jobs:
uses: astral-sh/setup-uv@v5
- name: install dependencies
run: |
make install
make negotiator/install
pushd web-components
npm install
npx playwright install-deps chromium
npx playwright install chromium
popd
- name: create test database
env:
PGPASSWORD: postgresql
Expand Down

0 comments on commit 7459690

Please sign in to comment.