Skip to content

Commit

Permalink
rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
shinyoshiaki committed Jan 21, 2020
1 parent d3b31b2 commit 3fa357f
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 59 deletions.
50 changes: 0 additions & 50 deletions .github/workflows/deploy.yml

This file was deleted.

8 changes: 6 additions & 2 deletions README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,13 @@ yarn start
yarn format
```

### Build
### Things to do before pushing

ビルドは GithubActions 上で行われるので、ローカルで行う必要はありません。
After editing the source code, please build before pushing.

```
yarn build
```

### Testing

Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,13 @@ yarn start
yarn format
```

### ビルド
### Push する前にすること

ビルドは GithubActions 上で行われるので、ローカルで行う必要はありません。
ソースコードを編集した後、Push する前にビルドを行ってください

```
yarn build
```

### テストコードを実行する

Expand Down
11 changes: 7 additions & 4 deletions README.zh_hans.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,13 @@ npm run start # npm

托管在 http://localhost:8080

编辑源代码时,请在 git push 之前进行构建:

```
For yarn build # yarn
npm run build # For npm
```

## 测试(Node.js)

您可以使用以下命令进行测试。
Expand All @@ -82,7 +89,3 @@ npm run test # For npm
```

`__tests__``preact`有测试用例。

### Build

ビルドは GithubActions 上で行われるので、ローカルで行う必要はありません。
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
"pre-commit": "pretty-quick --staged",
"pre-push": "npm run build"
}
}
}

0 comments on commit 3fa357f

Please sign in to comment.