huilensolis is testing out 227 feat add entry list to sidebar #42
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: Run Client Tests | |
run-name: ${{ github.actor }} is testing out ${{ github.event.pull_request.title }} | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 6 | |
defaults: | |
run: | |
shell: bash | |
environment: Preview | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest # or "latest", "canary", <sha> | |
- uses: KengoTODA/actions-setup-docker-compose@v1 | |
with: | |
version: "v2.24.1" # the full version of `docker-compose` command | |
- name: Install npm dependencies | |
run: bun i | |
- name: install playwright browsers | |
working-directory: ./apps/client | |
run: bunx playwright install --with-deps | |
- name: Create .env file on api dir | |
working-directory: apps/api | |
run: | | |
touch .env | |
echo PORT=3000 >> .env | |
echo JWT_SECRET="secret" >> .env | |
echo POSTGRES_DATABASE="memoir_db" >> .env | |
echo POSTGRES_USER="memoir_user" >> .env | |
echo POSTGRES_PASSWORD="memoir_password" >> .env | |
echo NODE_ENV="test" >> .env | |
echo ORIGIN="localhost:3001" >> .env | |
echo API_URL="http://localhost:3000" >> .env | |
echo DATABASE_URL="empty-string" >> .env | |
- name: Create .env file on client dir | |
working-directory: apps/client | |
run: | | |
touch .env | |
echo NEXT_PUBLIC_SITE=http://localhost:3000 >> .env | |
echo API_URL=http://localhost:3001 >> .env | |
- name: Run tests | |
working-directory: apps/client | |
run: bun run test |