Skip to content

Commit 4e0ce33

Browse files
authored
Merge pull request #5 from code0-tech/refactor-stuff
Refactor stuff
2 parents 28c8fcb + fecb5de commit 4e0ce33

83 files changed

Lines changed: 4750 additions & 3607 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ jobs:
1515
registry-url: 'https://registry.npmjs.org'
1616
- run: npm ci
1717
- run: npm run build
18+
- run: npm run lint
1819
- run: npm run test

.tool-versions

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
nodejs 24.13.1
1+
nodejs 24.13.1
2+
npm 11.12.1

actions/gls-action/Dockerfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM node:24-alpine
2+
3+
WORKDIR /app
4+
5+
COPY code0-tech-* ./
6+
7+
COPY package.json package-lock.json tsconfig.base.json turbo.json ./
8+
9+
COPY actions/gls-action ./actions/gls-action
10+
11+
RUN npm ci
12+
13+
WORKDIR /app/actions/gls-actions
14+
15+
RUN npm run build
16+
17+
18+
CMD ["npm", "run", "start", "-w", "@code0-tech/gls-action"]

actions/gls-action/docker-compose.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)