aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/test_bazarr_execution.yml
blob: da31638c0c6e1ba7251f150980ac330b1ae2ae18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: test_bazarr_execution
on: workflow_dispatch

jobs:
  Test:
    runs-on: ubuntu-latest
    env:
      ROOT_DIRECTORY: .
      SCRIPTS_DIRECTORY: .github/scripts
      FETCH_DEPTH: 15 # Should be enough
    steps:
      - name: Validate branch
        if: ${{ github.ref != 'refs/heads/development' }}
        run: |
          echo This action can only be run on development branch, not ${{ github.ref }}
          exit 1

      - name: Checkout
        uses: actions/checkout@v4
        with:
          fetch-depth: ${{ env.FETCH_DEPTH }}
          ref: development

      - name: Setup NodeJS
        uses: actions/setup-node@v3
        with:
          node-version: "lts/*"

      - name: Install UI Dependencies
        run: npm install
        working-directory: ${{ env.UI_DIRECTORY }}

      - name: Build UI
        run: npm run build
        working-directory: ${{ env.UI_DIRECTORY }}

      - name: Set up Python 3.8
        uses: actions/setup-python@v4
        with:
          python-version: "3.8"

      - name: Install Python dependencies
        run: |
          python -m pip install --upgrade pip
          pip install -r '${{ env.ROOT_DIRECTORY }}/requirements.txt'

      - name: Test Bazarr execution
        run: |
          bash '${{ env.SCRIPTS_DIRECTORY }}/build_test.sh'