Skip to content

Splice abbrevations PDF into Antiken Sammlung data #94

Splice abbrevations PDF into Antiken Sammlung data

Splice abbrevations PDF into Antiken Sammlung data #94

Workflow file for this run

name: frontend-test
on:
workflow_dispatch:
push:
paths:
- 'frontend/**'
- '!frontend/con10t/**'
branches:
- main
- stable
defaults:
run:
working-directory: frontend
env:
TEST_SERVER: bogusman02.dai-cloud.uni-koeln.de
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Cache npm modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install npm dependencies
run: npm i
- name: Run unit tests
run: npm run test
# - name: Set backend URI to test server
# run: sed -i 's/document.location.host/\"'"${{ env.TEST_SERVER }}"'\"/' app/app.js
# - name: Start dev server (in background)
# run: npm start &
# - name: Run e2e tests
# run: xvfb-run -n 97 npm run e2e
# - name: Reset backend URI
# run: sed -i 's/\"'"${{ env.TEST_SERVER }}"'\"/document.location.host/' app/app.js