Skip to content

Commit

Permalink
feat: update static_assets_check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-canon committed Nov 21, 2024
1 parent f09c8ff commit 4f980d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/static-assets-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-20.04 ]
os: [ ubuntu-24.04 ]
python-version:
- '3.11'
node-version: [ 18 ]
Expand Down Expand Up @@ -72,9 +72,6 @@ jobs:
run: |
make base-requirements
- name: Initiate Mongo DB Service
run: sudo systemctl start mongod

- name: Add node_modules bin to $Path
run: echo $GITHUB_WORKSPACE/node_modules/.bin >> $GITHUB_PATH

Expand Down
2 changes: 1 addition & 1 deletion pavelib/prereqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
if toxenv and toxenv != 'quality':
PYTHON_REQ_FILES = ['requirements/edx/testing.txt']
else:
PYTHON_REQ_FILES = ['requirements/edx/development.txt']
PYTHON_REQ_FILES = ['requirements/edx/development.txt', 'requirements/edx/temp.txt']

# Developers can have private requirements, for local copies of github repos,
# or favorite debugging tools, etc.
Expand Down
2 changes: 2 additions & 0 deletions requirements/edx/temp.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
xmlsec==1.3.14
lxml[html-clean,html_clean]==5.3.0

0 comments on commit 4f980d2

Please sign in to comment.