Skip to content

Commit b0723de

Browse files
committed
Replace local action with inline job
1 parent a7ff5d5 commit b0723de

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/CICD.yaml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,19 @@ jobs:
138138
steps:
139139
- name: checkout
140140
uses: actions/checkout@v3
141+
142+
- name: Use Node.js 20.x
143+
working-directory: ./GraphViewControl
144+
uses: actions/setup-node@v3
145+
with:
146+
node-version: 20.x
141147

142-
- name: npm build and test
143-
uses: ./.github/workflows/nodejs_webpack.yaml
148+
- name: Build
149+
working-directory: ./GraphViewControl
150+
run: |
151+
npm install
152+
npm test
153+
npx webpack
144154
145155
- name: Upload artifacts
146156
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)