Skip to content

Commit

Permalink
More updates
Browse files Browse the repository at this point in the history
  • Loading branch information
FoxxMD committed Jun 25, 2024
1 parent f2a3484 commit 115780a
Show file tree
Hide file tree
Showing 12 changed files with 2,240 additions and 1,117 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/typedoc_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: 'yarn'
cache: 'npm'

- run: yarn install --frozen-lockfile
- run: yarn run build
- run: npm ci
- run: npm run build

- name: Create the docs directory locally in CI
run: npx typedoc
run: npm run typedoc

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.4
uses: JamesIves/github-pages-deploy-action@4
with:
branch: gh-pages
folder: docs
6 changes: 1 addition & 5 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
{
"require": ["./register.cjs", "source-map-support/register"],
"reporter": "spec",
"extension": ["ts"],
"node-option": [
"experimental-specifier-resolution=node",
"loader=ts-node/esm"
]
"import": "tsx/esm"
}
Loading

0 comments on commit 115780a

Please sign in to comment.