Adding jquery back into the build to fix restdocs #298
This file contains 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: Test LTI Tools | |
on: | |
pull_request: | |
paths: | |
- modules/lti/** | |
push: | |
paths: | |
- modules/lti/** | |
jobs: | |
main: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: install javascript dependencies | |
working-directory: modules/lti/ | |
run: npm ci | |
- name: install selenium | |
working-directory: modules/lti/ | |
run: pip install -r requirements.txt | |
- name: running selenium tests | |
working-directory: modules/lti/ | |
run: ./selenium-tests |