We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c18227 commit e71d4eeCopy full SHA for e71d4ee
1 file changed
.github/workflows/pipeline.yml
@@ -1,21 +1,18 @@
1
-name: Deploy to Render.com
+name: Build Docker image and push it to Docker Hub
2
jobs:
3
build:
4
runs-on: ubuntu-latest
5
steps:
6
- name: Use Node.js
7
uses: actions/setup-node@v3
8
with:
9
- node-version: '20.x'
+ node-version: '24.x'
10
11
- name: Check out repository
12
uses: actions/checkout@v4
13
14
- name: Install dependencies
15
- run: npm install
16
-
17
- - name: Build
18
- run: npm run build
+ run: npm ci
19
20
- name: Log in to Docker Hub
21
uses: docker/login-action@v3
0 commit comments