We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 422ece8 commit 036f54eCopy full SHA for 036f54e
2 files changed
.github/workflow/node.js.yml
.github/workflows/node.js.yml
@@ -2,20 +2,22 @@ name: Node.js CI
2
3
on:
4
push:
5
- branches: [ 'ci', 'dev' ]
6
- tags: [ 'v*' ]
+ branches: ['ci', 'dev']
+ 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
- - run: cd 1-order-service/
19
- - run: npm ci
20
- - run: npm run build --if-present
21
- - run: cat Dockerfile
+ - uses: actions/checkout@v4
+ - name: Use Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: '24.x'
+ - run: npm ci
+ working-directory: 1-order-service
+ - run: npm run build --if-present
22
+ - run: cat Dockerfile
23
0 commit comments