Skip to content

attempting to fix github actions errors #10

attempting to fix github actions errors

attempting to fix github actions errors #10

Workflow file for this run

name: End-To-End Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.17.0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '^1.22.3'
- run: npm ci
- run: npx prisma generate
- run: docker-compose -f docker-compose.yml -f docker-compose.dev.yml up -d
- run: make db push
- run: make seed
- run: npm run e2e