Skip to content
Open
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
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm run test
3 changes: 2 additions & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
nodejs 24.13.1
nodejs 24.13.1
npm 11.12.1
18 changes: 18 additions & 0 deletions actions/gls-action/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM node:24-alpine

WORKDIR /app

COPY code0-tech-* ./

COPY package.json package-lock.json tsconfig.base.json turbo.json ./

COPY actions/gls-action ./actions/gls-action

RUN npm ci

WORKDIR /app/actions/gls-actions

RUN npm run build


CMD ["npm", "run", "start", "-w", "@code0-tech/gls-action"]
11 changes: 0 additions & 11 deletions actions/gls-action/docker-compose.yml

This file was deleted.

Loading