Skip to content

Web interface dev

Web interface dev #35

Workflow file for this run

name: Test the application
on: [pull_request]
env:
IMAGE_TAG: mnemosyne-api
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Build the Docker image
run: docker build -f mnemosyne-infrastructure/api/Dockerfile.api-tests -t $IMAGE_TAG .
- name: Run tests
run: docker run $IMAGE_TAG sh -c 'npm run test'