Skip to content

Commit

Permalink
change the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cavencj committed Sep 13, 2022
1 parent 7d28fb7 commit 4522050
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -25,4 +25,4 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Publish project
run: yarn && yarn run build:sdk
run: yarn && yarn run build
4 changes: 2 additions & 2 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -24,5 +24,5 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Build project
run: yarn && yarn dev:sdk
run: yarn && yarn dev

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"copy": "node scripts/build.js",
"dev": "yarn run dev:base && yarn run dev:core && yarn run dev:chart && yarn run dev:mapv && yarn run dev:s3m",
"build": "yarn run build:base && yarn run build:core && yarn run build:chart && yarn run build:mapv && yarn run build:s3m",
"dev:sdk": "yarn run dev && node scripts/build.js",
"build:sdk": "yarn run build && node scripts/build.js",
"dev:sdk": "yarn run dev && yarn run copy",
"build:sdk": "yarn run build && yarn run copy",
"release": "node scripts/release.js",
"dev:base": "yarn run clean:base && webpack --config build/webpack.base.conf --mode development",
"build:base": "yarn run clean:base && webpack --config build/webpack.base.conf --mode production --env.production",
Expand Down

0 comments on commit 4522050

Please sign in to comment.