Skip to content

Commit 036f54e

Browse files
committed
ci 🦊: Fix DIR
1 parent 422ece8 commit 036f54e

2 files changed

Lines changed: 13 additions & 35 deletions

File tree

.github/workflow/node.js.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/node.js.yml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,22 @@ name: Node.js CI
22

33
on:
44
push:
5-
branches: [ 'ci', 'dev' ]
6-
tags: [ 'v*' ]
5+
branches: ['ci', 'dev']
6+
tags: ['v*']
77

88
jobs:
99
build:
1010
runs-on: ubuntu-latest
1111

1212
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-
- run: cd 1-order-service/
19-
- run: npm ci
20-
- run: npm run build --if-present
21-
- run: cat Dockerfile
13+
- uses: actions/checkout@v4
14+
- name: Use Node.js
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: '24.x'
18+
- run: npm ci
19+
working-directory: 1-order-service
20+
- run: npm run build --if-present
21+
working-directory: 1-order-service
22+
- run: cat Dockerfile
23+
working-directory: 1-order-service

0 commit comments

Comments
 (0)