Skip to content

Feat/compute webservice at publication #1578

Feat/compute webservice at publication

Feat/compute webservice at publication #1578

Workflow file for this run

name: Lodex CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test-unit:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install LODEX
run: make install
- name: Start Unit Tests
run: make test-unit
test-api-e2e:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install LODEX
run: make install
- name: Start API E2E Tests
run: make test-api-e2e
test-e2e:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install LODEX
run: make install
- name: Start E2E Tests
run: make test-e2e
- name: Upload screenshots
uses: actions/upload-artifact@v2
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots