Skip to content

Commit

Permalink
chore: specify node version
Browse files Browse the repository at this point in the history
  • Loading branch information
moonrailgun committed Jun 23, 2020
1 parent a218b02 commit 402fa32
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ jobs:
node:
working_directory: ~/trpg
docker:
- image: circleci/node
- image: circleci/node:10.18.1
steps:
- checkout
- run:
Expand Down Expand Up @@ -32,7 +32,7 @@ jobs:
Build Electron App:
working_directory: ~/trpg
docker:
- image: circleci/node
- image: circleci/node:10.18.1
steps:
- checkout
# 更新node依赖
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
Build RN Code:
working_directory: ~/trpg
docker:
- image: circleci/node
- image: circleci/node:10.18.1
steps:
- checkout
- restore_cache:
Expand Down
1 change: 1 addition & 0 deletions test/component/app.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import ReactDOM from 'react-dom';

// 冒烟测试
test('renders full app without crashing', async () => {
const div = document.createElement('div');
div.id = 'app';
Expand Down

0 comments on commit 402fa32

Please sign in to comment.