Skip to content

Merge pull request #5212 from eva-vashkevich/python_clean_up_2.8 #215

Merge pull request #5212 from eva-vashkevich/python_clean_up_2.8

Merge pull request #5212 from eva-vashkevich/python_clean_up_2.8 #215

Workflow file for this run

name: Tests
on:
push:
branches:
- release-2.8
pull_request:
branches:
- release-2.8
# This tells GH that the workflow is reusable
workflow_call:
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Run Setup
uses: ./.github/actions/setup
- name: Run tests
run: yarn test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Run Setup
uses: ./.github/actions/setup
- name: Run linter
run: yarn lint:js