Skip to content

Commit

Permalink
feat(types): adds types via JSDoc comments (#26)
Browse files Browse the repository at this point in the history
This PR does a number of things, mainly adding types via JSDoc comments.
There are also a few fixes to the commitizen integration and the removal
of the release dry-run in CI since that isn't supported by Semantic
Release yet
  • Loading branch information
Tbhesswebber authored Nov 14, 2023
1 parent 9cf3d72 commit 037cbc5
Show file tree
Hide file tree
Showing 9 changed files with 2,513 additions and 670 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ jobs:
- run: npm ci
- run: npm run validate
- run: npm run build
dry-run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
- run: npm ci
- name: Build
run: npm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run release -- --dry-run
# dry-run:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Setup node
# uses: actions/setup-node@v3
# - run: npm ci
# - name: Build
# run: npm run build
# - name: Release
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
# run: unset GITHUB_ACTIONS && npm run release -- --dry-run --no-ci
Loading

0 comments on commit 037cbc5

Please sign in to comment.