[💚] Add CI for ts-standard
This commit is contained in:
parent
f935718ece
commit
0a38098c1a
2 changed files with 11 additions and 1 deletions
10
.github/workflows/ts-standard.yml
vendored
Normal file
10
.github/workflows/ts-standard.yml
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
name: ts-standard
|
||||
jobs:
|
||||
Semi-Standard:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.1.0
|
||||
- name: Install dependencies
|
||||
run: npm i
|
||||
- name: Run ts-standard test
|
||||
run: npm run test
|
||||
|
|
@ -4,7 +4,7 @@
|
|||
"description": "",
|
||||
"main": "src/index.ts",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"test": "ts-standard",
|
||||
"build": "webpack",
|
||||
"watch": "webpack --watch",
|
||||
"serve": "webpack serve"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue