replace security preview explanation with link to post #10616
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: Validate and process static files | |
on: [pull_request, push] | |
jobs: | |
static: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: actions/setup-node@v5 | |
with: | |
cache: npm | |
- uses: actions/setup-python@v6 | |
with: | |
python-version: '3.13' | |
cache: pip | |
- run: sudo apt-get update | |
- run: sudo apt-get -y install libxml2-utils yajl-tools moreutils zopfli | |
- run: npm ci --ignore-scripts | |
- run: 'pip install --require-hashes --only-binary :all: -r requirements.txt' | |
- name: process static | |
run: ./process-static |