Skip to content

Commit

Permalink
Merge branch 'main' into reminder
Browse files Browse the repository at this point in the history
  • Loading branch information
lilith authored Aug 6, 2023
2 parents c0428d0 + 7e1ea25 commit 7155ef6
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ env:
DATABASE_PRISMA_URL: postgres://postgres:postgres@localhost:5432/test
DATABASE_URL: postgres://postgres:postgres@localhost:5432/test
PUBLIC_URL: http://localhost:5173
TWILIO_MESSAGING_SERVICE_SID: ${{ secrets.TWILIO_MESSAGING_SERVICE_SID }}
TWILIO_PHONE_NUMBER: ${{ secrets.TWILIO_PHONE_NUMBER }}
TWILIO_ACCOUNT_SID: ${{ secrets.TWILIO_ACCOUNT_SID }}
TWILIO_API_SECRET: ${{ secrets.TWILIO_API_SECRET }}
TWILIO_AUTH_TOKEN: ${{ secrets.TWILIO_AUTH_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -43,11 +48,8 @@ jobs:
- name: Build in node mode
run: yarn nodebuild

- name: Install playwright
run: npx playwright install

- name: Install Playwright dependencies (just chromium for now)
run: npx playwright install-deps chromium
- name: Install playwright & dependencies
run: yarn exec playwright install --with-deps

- name: Run tests
run: yarn test
Expand Down

0 comments on commit 7155ef6

Please sign in to comment.