Skip to content

Commit

Permalink
test: run ci on Node.js 20 (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed Jun 7, 2023
1 parent 6cb6d9a commit 21d5ec2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ on:
branches:
- main
- master
schedule:
- cron: '0 2 * * *'

jobs:
build:
Expand Down Expand Up @@ -42,7 +40,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [16, 18]
node-version: [16, 18, 20]
os: [ubuntu-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion layotto
Submodule layotto updated 79 files
+1 −1 .github/workflows/codeql-analysis.yml
+7 −1 .github/workflows/dead-link-checker.yaml
+189 −0 .github/workflows/kube-bot.yaml
+15 −15 .github/workflows/layotto-ci.yml
+15 −15 .github/workflows/layotto-release.yml
+1 −1 .github/workflows/license-checker.yml
+1 −1 .github/workflows/markdown-checker.yml
+1 −1 .github/workflows/pr-title-checker.yml
+1 −1 .github/workflows/proto-checker.yml
+1 −1 .github/workflows/quickstart-checker.yml
+1 −1 .github/workflows/stale.yml
+18 −0 OWNERS
+4 −0 cmd/layotto/main.go
+4 −0 cmd/layotto_multiple_api/main.go
+4 −0 cmd/layotto_without_xds/main.go
+1 −0 components/go.mod
+2 −0 components/go.sum
+7 −0 components/lock/consul/consul_lock.go
+6 −0 components/lock/consul/consul_lock_test.go
+6 −0 components/lock/etcd/etcd_lock.go
+6 −0 components/lock/etcd/etcd_lock_test.go
+7 −0 components/lock/in-memory/in_memory_lock.go
+5 −0 components/lock/in-memory/in_memory_lock_test.go
+4 −0 components/lock/lock_store.go
+7 −2 components/lock/mongo/mongo_lock.go
+6 −0 components/lock/mongo/mongo_lock_test.go
+6 −0 components/lock/redis/cluster_redis_lock.go
+5 −0 components/lock/redis/cluster_redis_lock_test.go
+6 −0 components/lock/redis/standalone_redis_lock.go
+11 −0 components/lock/types.go
+7 −0 components/lock/zookeeper/zookeeper_lock.go
+6 −0 components/lock/zookeeper/zookeeper_lock_test.go
+8 −13 components/oss/aliyun/oss.go
+1 −1 components/oss/aliyun/oss_test.go
+23 −0 components/oss/const.go
+25 −0 components/oss/huaweicloud/errors.go
+700 −0 components/oss/huaweicloud/oss.go
+519 −0 components/oss/huaweicloud/oss_test.go
+1 −1 components/oss/registry.go
+176 −0 components/oss/registry_test.go
+1 −0 components/trace/generator.go
+1 −0 components/trace/generator_test.go
+41 −0 configs/config_uds.json
+17 −0 demo/bindings/main.go
+47 −0 demo/delay_queue/common/client.go
+55 −7 demo/file/client.go
+16 −3 demo/go.mod
+1,697 −16 demo/go.sum
+51 −4 demo/oss/client.go
+63 −0 demo/uds/client.go
+13 −10 diagnostics/genetator.go
+2 −0 diagnostics/tracing.go
+1 −0 docs/_sidebar.md
+123 −0 docs/api/v1/runtime.html
+4 −0 docs/en/development/commands.md
+76 −0 docs/en/development/component_ref/component_ref.md
+6 −6 docs/en/development/contributing-doc.md
+5 −5 docs/en/development/test-quickstart.md
+5 −5 docs/en/start/api_plugin/generate.md
+2 −0 docs/zh/_sidebar.md
+4 −0 docs/zh/development/commands.md
+75 −0 docs/zh/development/component_ref/component_ref.md
+5 −4 docs/zh/start/api_plugin/generate.md
+1 −1 docs/zh/start/state/start.md
+87 −0 docs/zh/start/uds/start.md
+3 −2 etc/script/test-quickstart.sh
+17 −16 go.mod
+39 −29 go.sum
+1 −1 make/golang.mk
+2 −3 pkg/actuator/actuator.go
+6 −6 pkg/grpc/context_generated.go
+8 −50 pkg/grpc/default_api/api.go
+4 −0 pkg/grpc/default_api/api_lock.go
+17 −1 pkg/mock/components/lock/lock.go
+4 −6 pkg/runtime/context_generated.go
+9 −20 pkg/runtime/runtime.go
+1,133 −893 spec/proto/runtime/v1/runtime.pb.go
+32 −0 spec/proto/runtime/v1/runtime.proto
+38 −0 spec/proto/runtime/v1/runtime_grpc.pb.go
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "1.3.0",
"description": "Layotto Node.js SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist",
Expand Down

0 comments on commit 21d5ec2

Please sign in to comment.