Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/check-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:
matrix:
node-version: [24.x] # Are you are missing this specification?
steps:
- name: Checkout repo content
uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: 'node/package-lock.json'
- name: Run node tests
run: make test-node
- name: Checkout repo content
uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: "node/package-lock.json"
- name: Run node tests
run: make test-node
verify-image-build:
needs: node-tests
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ flaskapi/runs/*
src/assets/*Inputs*.json
*.conf.json
flaskapi/mmux_python
osparc-api-ts-client

# Logs
logs
Expand Down
1 change: 1 addition & 0 deletions node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Build stage
FROM node:24-alpine AS builder
RUN apk --no-cache --update add openjdk21
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
Expand Down
Loading