Skip to content

Commit

Permalink
[cueweb] Add tests to ci/cd pipeline
Browse files Browse the repository at this point in the history
- Adding cueweb tests to the opencue ci/cd pipeline
  • Loading branch information
Zach-Fong committed Nov 26, 2024
1 parent 032f701 commit 74fdf1f
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/testing-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: OpenCue Testing Pipeline

on:
push:
branches: [ master ]
branches: [ master, cueweb ]
pull_request:
branches: [ master ]
branches: [ master, cueweb ]

jobs:
test_python_2022:
Expand Down Expand Up @@ -104,6 +104,23 @@ jobs:
- name: Run Sphinx build
run: ci/build_sphinx_docs.sh

test_cueweb:
name: Run CueWeb Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 21.x
- name: change to cueweb directory
run: cd cueweb
- name: npm install
run: npm install
- name: Run tests in Docker container
run: npm test

check_changed_files:
name: Check Changed Files
runs-on: ubuntu-latest
Expand Down

0 comments on commit 74fdf1f

Please sign in to comment.