fix: testing karma js tests #27
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Javascript tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - '**' | |
| jobs: | |
| run_tests: | |
| name: JS | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node-version: [20] | |
| python-version: ['3.11', '3.12'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Fetch main to compare coverage | |
| run: git fetch --depth=1 origin main | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Setup npm | |
| run: npm i -g npm@10.7.x | |
| - name: Install Firefox 123.0 | |
| run: | | |
| sudo apt-get purge firefox | |
| wget "https://ftp.mozilla.org/pub/firefox/releases/123.0/linux-x86_64/en-US/firefox-123.0.tar.bz2" | |
| tar -xjf firefox-123.0.tar.bz2 | |
| sudo mv firefox /opt/firefox | |
| sudo ln -s /opt/firefox/firefox /usr/bin/firefox | |
| - name: Install Required System Packages | |
| run: sudo apt-get update && sudo apt-get install -y libxmlsec1-dev ubuntu-restricted-extras xvfb | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Get pip cache dir | |
| id: pip-cache-dir | |
| run: | | |
| echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT | |
| - name: Cache pip dependencies | |
| id: cache-dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.pip-cache-dir.outputs.dir }} | |
| key: ${{ runner.os }}-pip-${{ hashFiles('requirements/edx/base.txt') }} | |
| restore-keys: ${{ runner.os }}-pip- | |
| - name: Install Required Python Dependencies | |
| run: | | |
| pip install -r requirements/base.txt | |
| - name: Install npm | |
| working-directory: ./xblocks_contrib/video | |
| run: npm ci | |
| - name: Run JS Tests | |
| working-directory: ./xblocks_contrib/video | |
| run: | | |
| npm run test | |
| - name: Save Job Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Build-Artifacts | |
| path: | | |
| reports/**/* | |
| test_root/log/*.png | |
| test_root/log/*.log | |
| **/TEST-*.xml | |
| overwrite: true |