Skip to content

Commit

Permalink
Add test to ensure documentation stays good
Browse files Browse the repository at this point in the history
  • Loading branch information
Drarig29 committed Jul 8, 2023
1 parent 900fbf6 commit eb26188
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Tests

on: push

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 14
- run: npm install
- run: npm lint
- run: npx typedoc src/index.ts --excludePrivate --excludeExternals --treatValidationWarningsAsErrors
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.idea
.vscode
node_modules
package-lock.json
package-lock.json
docs
1 change: 1 addition & 0 deletions .prettierrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tabWidth: 2

0 comments on commit eb26188

Please sign in to comment.