[💚] Add CI for ts-standard

This commit is contained in:
ThinLiquid 2023-10-16 15:29:10 +01:00
parent f935718ece
commit 0a38098c1a
2 changed files with 11 additions and 1 deletions

10
.github/workflows/ts-standard.yml vendored Normal file
View 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

View file

@ -4,7 +4,7 @@
"description": "", "description": "",
"main": "src/index.ts", "main": "src/index.ts",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "ts-standard",
"build": "webpack", "build": "webpack",
"watch": "webpack --watch", "watch": "webpack --watch",
"serve": "webpack serve" "serve": "webpack serve"