We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3f8cfa commit defb845Copy full SHA for defb845
.github/workflows/docker-publish.yml
@@ -21,6 +21,23 @@ jobs:
21
- name: Checkout repository
22
uses: actions/checkout@v4
23
24
+ - name: Set up Node.js
25
+ uses: actions/setup-node@v4
26
+ with:
27
+ node-version: '20' # Use a recent LTS version
28
+
29
+ - name: Install backend dependencies and check formatting
30
+ run: |
31
+ cd backend
32
+ npm ci
33
+ npm run format:check
34
35
+ - name: Install frontend dependencies and check formatting
36
37
+ cd frontend
38
39
40
41
- name: Set up Docker Buildx
42
uses: docker/setup-buildx-action@v3
43
@@ -52,4 +69,4 @@ jobs:
52
69
tags: ${{ steps.meta.outputs.tags }}
53
70
labels: ${{ steps.meta.outputs.labels }}
54
71
cache-from: type=gha
55
- cache-to: type=gha,mode=max
72
+ cache-to: type=gha,mode=max
0 commit comments