v0.3.04-beta: draai securitytests in Docker
Some checks failed
dev - build & deploy naar test / build-and-deploy (push) Failing after 27s

This commit is contained in:
Ramon 2026-07-14 13:09:09 +02:00
parent f9b2be8187
commit e727d6a07c
4 changed files with 12 additions and 8 deletions

View file

@ -21,9 +21,11 @@ jobs:
- name: Dependencies en securitytests
run: |
npm ci
npm test
npm audit --omit=dev --audit-level=moderate
docker run --rm \
-v "$PWD:/app" \
-v /app/node_modules \
-w /app node:22-alpine \
sh -lc 'npm ci && npm test && npm audit --omit=dev --audit-level=moderate'
- name: Image-tags bepalen
id: meta

View file

@ -21,9 +21,11 @@ jobs:
- name: Dependencies en securitytests
run: |
npm ci
npm test
npm audit --omit=dev --audit-level=moderate
docker run --rm \
-v "$PWD:/app" \
-v /app/node_modules \
-w /app node:22-alpine \
sh -lc 'npm ci && npm test && npm audit --omit=dev --audit-level=moderate'
- name: Image-tags bepalen
id: meta

View file

@ -1 +1 @@
0.3.03-beta
0.3.04-beta

View file

@ -2,7 +2,7 @@
"use strict";
/* version shown until /api/version resolves (or if the fetch fails, e.g. offline).
Kept in sync by hand with the VERSION file at the repo root on every release. */
const VERSION = "0.3.03-beta";
const VERSION = "0.3.04-beta";
(function(){
const tag = document.getElementById("verTag");
tag.textContent = "v"+VERSION;