Skip to content

fix: Github Actions error fixed #3

fix: Github Actions error fixed

fix: Github Actions error fixed #3

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
- dev
jobs:
testing:
runs-on: ubuntu-latest
env:
DATABASE_URL: mysql://root:root@localhost:3306/techstart-fashion
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: cd backend && npm install
- name: Start services
uses: ./.github/actions/docker-compose
- name: Test
run: cd backend && npm run test