-
Notifications
You must be signed in to change notification settings - Fork 0
SSISDK-17 bitstringStatusList support library #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
6a29e3c
chore: initial commit with BitsteamStatusList implementation
sanderPostma 0478d25
chore: initial README.md
sanderPostma 7a52314
chore: README.md infobox update
sanderPostma c042306
chore: updated package.json
sanderPostma bcd5038
chore: ignore .idea
sanderPostma 4d0bb18
chore: removed rogue field
sanderPostma bf41ed9
chore: tweaking implementation
sanderPostma 4002262
chore: simplified and all tests passing
sanderPostma 52c14d2
chore: minimal Github CI
sanderPostma e03ce65
chore: Github CI use pnpm version from package.json
sanderPostma ec04d35
chore: set access public
sanderPostma 8790b8d
chore: README update
sanderPostma a56adf5
chore: scrutinized details
sanderPostma 91b8f55
chore: readme fix
sanderPostma a53e316
chore: readme fix
sanderPostma b5dcc49
chore: removed debug line
sanderPostma 9358d2f
chore: readme update
sanderPostma 71f33dc
chore: import optimize
sanderPostma 68c619a
chore: comment update
sanderPostma 7ce8dac
Merge branch 'main' into develop
sanderPostma 5ea23b4
chore: release unstable
sanderPostma e6beb78
chore: do not publish src
sanderPostma 81ce0aa
chore: README fix
sanderPostma 19ba6c6
Merge branch 'main' into develop
sanderPostma 431c584
chore: README fix
sanderPostma 4edabc4
Merge branch 'main' into develop
sanderPostma 420b206
chore: package.json stuff
sanderPostma d6be09c
chore: Only release main branch for now
sanderPostma 9b26549
chore: publishConfig private until approval
sanderPostma af70252
chore: Addressed PR feedback
sanderPostma 911ca57
chore: Addressed PR feedback
sanderPostma a7198b4
chore: Set npm to public
sanderPostma dca7a77
chore: set version
sanderPostma d3f29cd
chore: cleanup
sanderPostma File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| name: Build, Test and Publish | ||
| on: | ||
| workflow_dispatch: | ||
| push: | ||
| branches: | ||
| - 'main' | ||
| jobs: | ||
| build-test-publish: | ||
| runs-on: ubuntu-24.04 | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
| - uses: pnpm/action-setup@v4 | ||
Brummos marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - name: Use Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '20.x' | ||
| cache: 'pnpm' | ||
| registry-url: 'https://registry.npmjs.org' | ||
| scope: '@4sure-tech' | ||
| - run: pnpm install | ||
| - run: pnpm build | ||
| - run: pnpm test:ci | ||
|
|
||
| - name: "Setup git coordinates" | ||
| run: | | ||
| git remote set-url origin https://github.com/4sure-tech/vc-bitstring-status-lists.git | ||
| git config user.name ${{secrets.GH_USER}} | ||
| git config user.email ${{secrets.GH_EMAIL}} | ||
|
|
||
| - name: Publish to npm | ||
Brummos marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| run: npm publish | ||
| env: | ||
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
Brummos marked this conversation as resolved.
Show resolved
Hide resolved
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -137,3 +137,4 @@ dist | |
| # Vite logs files | ||
| vite.config.js.timestamp-* | ||
| vite.config.ts.timestamp-* | ||
| /.idea/ | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.