Skip to content

Fix E2E test

Fix E2E test #38

name: Format and lint
on: [push, pull_request]
jobs:
format:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"] #, "3.9", "3.10"]
# Skip `pull_request` runs on local PRs for which `push` runs are already triggered
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout 🏷️
uses: actions/checkout@v3
- name: Install LDAP dependencies
run: sudo apt-get -y install libsasl2-dev libldap2-dev libssl-dev
- name: Set up Conda
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: mxcubeweb
auto-activate-base: false
auto-update-conda: true
environment-file: conda-environment.yml
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e .
npm install --prefix ./ui
- name: Check formatting
run: npm run --prefix ./ui prettier
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"] #, "3.9", "3.10"]
# Skip `pull_request` runs on local PRs for which `push` runs are already triggered
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout 🏷️
uses: actions/checkout@v3
- name: Install LDAP dependencies
run: sudo apt-get -y install libsasl2-dev libldap2-dev libssl-dev
- name: Cache Conda packages
uses: actions/cache@v2
with:
path: ~/conda_pkgs_dir
key: ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{
hashFiles('conda-environment.yml') }}
env:
CACHE_NUMBER: 0 # increase to reset cache if `conda-environment.yml` has not changed
- name: Set up Conda
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: mxcubeweb
auto-activate-base: false
auto-update-conda: true
channel-priority: strict
environment-file: conda-environment.yml
python-version: ${{ matrix.python-version }}
use-only-tar-bz2: true
- name: Install dependencies
run: |
pip install -e .
npm install --prefix ./ui
- name: Lint
run: npm run --prefix ./ui eslint