Skip to content

Commit

Permalink
fix: use @globus/[email protected]
Browse files Browse the repository at this point in the history
docs: use typedoc for documentation generation, adds markdown type generation.
  • Loading branch information
jbottigliero committed Sep 4, 2024
1 parent 8f79b28 commit c4b3ab6
Show file tree
Hide file tree
Showing 19 changed files with 514 additions and 554 deletions.
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'daily'
commit-message:
prefix: 'deps: '
target-branch: 'main'
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: ci
on:
pull_request:
branches:
- main
workflow_call:

jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/hydrogen
cache: "npm"
- run: npm install
- run: npm run test
- run: npm run build
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ node_modules
temp
etc
lib
dist
dist

.DS_Store
Loading

0 comments on commit c4b3ab6

Please sign in to comment.