Skip to content

Commit

Permalink
chore: update node version
Browse files Browse the repository at this point in the history
  • Loading branch information
lzxue committed Dec 4, 2023
1 parent 1129633 commit 9b020af
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18.x
- run: yarn
- run: yarn lint

Expand All @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18.x
- run: yarn
- run: yarn site:build
- run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
3 changes: 3 additions & 0 deletions dev-demos/bugs/point/demos/circle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ export default () => {
opacity: 1,
});
scene.addLayer(imageLayer);
imageLayer.on('click',(e)=>{
console.log(e)
})
scene.addLayer(imageLayer2);
});
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dev-demos/*"
],
"scripts": {
"dev": "dumi dev",
"dev": "dumi dev --openssl-legacy-provider",
"dev-build": "dumi build",
"start": "lerna --scope @antv/l7-site exec yarn run site:develop",
"site:build": "lerna --scope @antv/l7-site exec yarn run site:build",
Expand Down

0 comments on commit 9b020af

Please sign in to comment.