Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SDCP-464] Unify rendering of preview fields #1549

Merged
merged 8 commits into from
Feb 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions .github/workflows/ci-client.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: "CI-Client"

on: [push, pull_request]

jobs:
client:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
env:
INSTALL_NODE_MODULES: true
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Cache NPM
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm on Linux/MacOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('package.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('server/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip
${{ runner.os }}-
- name: Setup Environment
run: ./scripts/ci-install.sh
- name: Start Services
run: ./scripts/ci-start-services.sh
# avoid file watch limit error
- run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
- name: test
run: npm run test
71 changes: 71 additions & 0 deletions .github/workflows/ci-e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: "CI-E2E"

on: [push, pull_request]

jobs:
e2e:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.6]
node-version: [12.x]
e2e: [a, b]
env:
INSTALL_NODE_MODULES: true
RUN_SERVICES: true
E2E: true
TZ: Australia/Sydney
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Cache NPM
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm on Linux/MacOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('package.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('server/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip
${{ runner.os }}-
- name: Setup Environment
run: ./scripts/ci-install.sh
- name: Build Client
working-directory: ./e2e
run: npm run build
- name: Start Services
run: ./scripts/ci-start-services.sh
- name: E2E Suite A
if: matrix.e2e == 'a'
working-directory: ./e2e
run: npm run cypress-ci -- --spec "cypress/integration/events/*.spec.*"
env:
CYPRESS_SCREENSHOTS_FOLDER: /tmp/cypress
- name: E2E Suite B
if: matrix.e2e == 'b'
working-directory: ./e2e
run: npm run cypress-ci -- --spec "cypress/integration/!(events)/*.spec.*"
env:
CYPRESS_SCREENSHOTS_FOLDER: /tmp/cypress
- name: Upload screenshots
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: screenshots-e2e-${{ matrix.e2e }}
path: /tmp/cypress/**/*.png
41 changes: 41 additions & 0 deletions .github/workflows/ci-server.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: "CI-Server"

on: [push, pull_request]

jobs:
server:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6]
env:
INSTALL_PY_MODULES: true
RUN_SERVICES: true
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('server/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip
${{ runner.os }}-
- name: Setup Environment
run: ./scripts/ci-install.sh
- name: Start Services
run: ./scripts/ci-start-services.sh
- name: Flake8
working-directory: ./server
run: flake8
- name: Nosetests
working-directory: ./server
run: nosetests --logging-level=ERROR
- name: Behave
working-directory: ./server
run: behave --format progress2 --logging-level=ERROR
150 changes: 0 additions & 150 deletions .github/workflows/ci-tests.yml

This file was deleted.

Loading