Skip to content

Commit 16b7fd9

Browse files
authored
Merge pull request #279 from ut-code/update-ci
Update build test CI
2 parents 36c17b8 + 321d0cb commit 16b7fd9

File tree

3 files changed

+12
-32
lines changed

3 files changed

+12
-32
lines changed

.github/actions/build/action.yml

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

.github/actions/install-modules/action.yml

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

.github/workflows/build-test.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
---
21
name: Build Test
32

43
on:
@@ -12,5 +11,16 @@ jobs:
1211
- name: Checkout Code
1312
uses: actions/checkout@v3
1413

14+
- name: Setup Node.js
15+
uses: actions/setup-node@v3
16+
with:
17+
node-version: latest
18+
cache: npm
19+
20+
- name: Install Dependencies
21+
run: npm ci
22+
shell: bash
23+
1524
- name: Build
16-
uses: ./.github/actions/build
25+
run: npm run build
26+
shell: bash

0 commit comments

Comments
 (0)