Skip to content

Commit 58925b6

Browse files
committedJan 7, 2025·
chore: change to tsconfig, remove runner upload
1 parent 40a725c commit 58925b6

File tree

4 files changed

+11
-36
lines changed

4 files changed

+11
-36
lines changed
 

‎.github/workflows/workflow.yaml

-35
Original file line numberDiff line numberDiff line change
@@ -16,44 +16,9 @@ env:
1616
ELASTICSEARCH_ACTIVE_VERSION: "8"
1717

1818
jobs:
19-
publish-runner:
20-
name: Kuzzle runner Docker image
21-
runs-on: ubuntu-24.04
22-
strategy:
23-
matrix:
24-
node-version: [22]
25-
steps:
26-
- uses: actions/checkout@v4
27-
28-
- name: Install additional libraries
29-
uses: ./.github/actions/install-packages
30-
31-
- name: Set up QEMU
32-
uses: docker/setup-qemu-action@v3
33-
34-
- name: Set up Docker Buildx
35-
uses: docker/setup-buildx-action@v3
36-
37-
- name: Login to DockerHub
38-
uses: docker/login-action@v3
39-
with:
40-
username: ${{ secrets.DOCKER_USERNAME }}
41-
password: ${{ secrets.DOCKER_PASSWORD }}
42-
43-
- name: Build and push
44-
uses: docker/build-push-action@v6
45-
with:
46-
context: ./docker/images/kuzzle-runner
47-
file: ./docker/images/kuzzle-runner/Dockerfile
48-
push: true
49-
build-args: NODE_VERSION=${{ matrix.node-version }}
50-
platforms: ${{ env.DOCKER_PLATFORMS }}
51-
tags: kuzzleio/kuzzle-runner:${{ matrix.node-version }}
52-
5319
prepare-matrix:
5420
name: Forge Node LTS Matrix
5521
runs-on: ubuntu-24.04
56-
needs: [publish-runner]
5722
steps:
5823
- id: set-matrix
5924
run: |

‎package-lock.json

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@
8989
"@types/jest": "29.5.14",
9090
"@types/js-yaml": "4.0.9",
9191
"@types/lodash": "4.17.14",
92+
"@types/mocha": "^10.0.10",
9293
"async": "3.2.5",
9394
"chokidar": "4.0.3",
9495
"cucumber": "6.0.7",

‎tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"skipLibCheck": true,
2020
"skipDefaultLibCheck": true,
2121
"types": [
22-
"node"
22+
"node",
23+
"jest"
2324
]
2425
},
2526
"rootDir": "lib/",

0 commit comments

Comments
 (0)
Please sign in to comment.