This is an automated email from the ASF dual-hosted git repository.
alexstocks pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-js.git
The following commit(s) were added to refs/heads/master by this push:
new f82a3b4 add node19 to ci
new b1bb7d6 Merge pull request #284 from hufeng/master
f82a3b4 is described below
commit f82a3b4970a8cc3bfd712e52ab14c3a7d8d72d56
Author: hufeng <[email protected]>
AuthorDate: Sat Oct 22 04:05:13 2022 +0800
add node19 to ci
---
.github/workflows/nodejs.yml | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml
index 4428b3c..1f1e0aa 100644
--- a/.github/workflows/nodejs.yml
+++ b/.github/workflows/nodejs.yml
@@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- node-version: [14, 16]
+ node-version: [14, 16, 19]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
@@ -31,10 +31,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
- run: npm install -g pnpm && pnpm i
-
- - name: compile all modules
- run: pnpm build
+ run: npm install -g pnpm && pnpm i
- name: Continuous Integration
run: pnpm test