diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2025-02-06 08:06:44 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2025-02-28 12:27:41 +0100 |
| commit | 6500d7371414251f895e36397ff017c129e6bbe0 (patch) | |
| tree | 3e0fdb24eccb4e868ee9acc7623a58bbdcf19a8a | |
| parent | 2bf77f5d2db2a33828beff402f7f18443204595d (diff) | |
[web-client] integrate the migrated theme in the github CI
- upgrade to ubuntu-24.04 to get NodeJS v20
- remove DEBUG (V=1) environment / in a ViteJS env the DEBUG environment is
reserved for interactive debugging tasks (not for verbose build messages).
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
| -rw-r--r-- | .github/workflows/integration.yml | 13 | ||||
| -rw-r--r-- | Makefile | 2 |
2 files changed, 2 insertions, 13 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index bcf539581..ddc0498f7 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -44,19 +44,8 @@ jobs: with: python-version: '3.12' architecture: 'x64' - - name: Cache Python dependencies - id: cache-python - uses: actions/cache@v4 - with: - path: | - ./local - ./.nvm - ./node_modules - key: python-ubuntu-24.04-3.12-${{ hashFiles('requirements*.txt', 'setup.py','.nvmrc', 'package.json') }} - - name: Install node dependencies - run: make V=1 node.env - name: Build themes - run: make V=1 themes.all + run: make themes.all documentation: name: Documentation @@ -50,7 +50,7 @@ search.checker.%: install $(Q)./manage pyenv.cmd searxng-checker -v "$(subst _, ,$(patsubst search.checker.%,%,$@))" PHONY += test ci.test test.shell -ci.test: test.yamllint test.black test.types.ci test.pylint test.unit test.robot test.rst test.shell test.pybabel test.themes +ci.test: test.yamllint test.black test.types.ci test.pylint test.unit test.robot test.rst test.shell test.pybabel test: test.yamllint test.black test.types.dev test.pylint test.unit test.robot test.rst test.shell test.shell: $(Q)shellcheck -x -s dash \ |