We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdf38fc commit 422ece8Copy full SHA for 422ece8
1 file changed
.github/workflow/node.js.yml
@@ -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
23
+ - run: cat Dockerfile
24
0 commit comments