Skip to content

Commit 422ece8

Browse files
committed
fix 🐞: CI of Order Service
1 parent bdf38fc commit 422ece8

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflow/node.js.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Node.js CI
2+
3+
on:
4+
push:
5+
branches: [ 'ci', 'dev' ]
6+
tags: [ 'v*' ]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Use Node.js
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: '24.x'
18+
19+
- run: npm i
20+
working-directory: 1-order-service
21+
- run: npm run build --if-present
22+
working-directory: 1-order-service
23+
- run: cat Dockerfile
24+
working-directory: 1-order-service

0 commit comments

Comments
 (0)