Skip to content
Merged
Show file tree
Hide file tree
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 Jul 9, 2025
0478d25
chore: initial README.md
sanderPostma Jul 9, 2025
7a52314
chore: README.md infobox update
sanderPostma Jul 9, 2025
c042306
chore: updated package.json
sanderPostma Jul 9, 2025
bcd5038
chore: ignore .idea
sanderPostma Jul 9, 2025
4d0bb18
chore: removed rogue field
sanderPostma Jul 9, 2025
bf41ed9
chore: tweaking implementation
sanderPostma Jul 9, 2025
4002262
chore: simplified and all tests passing
sanderPostma Jul 9, 2025
52c14d2
chore: minimal Github CI
sanderPostma Jul 10, 2025
e03ce65
chore: Github CI use pnpm version from package.json
sanderPostma Jul 10, 2025
ec04d35
chore: set access public
sanderPostma Jul 10, 2025
8790b8d
chore: README update
sanderPostma Jul 11, 2025
a56adf5
chore: scrutinized details
sanderPostma Jul 11, 2025
91b8f55
chore: readme fix
sanderPostma Jul 11, 2025
a53e316
chore: readme fix
sanderPostma Jul 11, 2025
b5dcc49
chore: removed debug line
sanderPostma Jul 11, 2025
9358d2f
chore: readme update
sanderPostma Jul 11, 2025
71f33dc
chore: import optimize
sanderPostma Jul 11, 2025
68c619a
chore: comment update
sanderPostma Jul 11, 2025
7ce8dac
Merge branch 'main' into develop
sanderPostma Jul 11, 2025
5ea23b4
chore: release unstable
sanderPostma Jul 11, 2025
e6beb78
chore: do not publish src
sanderPostma Jul 11, 2025
81ce0aa
chore: README fix
sanderPostma Jul 11, 2025
19ba6c6
Merge branch 'main' into develop
sanderPostma Jul 11, 2025
431c584
chore: README fix
sanderPostma Jul 11, 2025
4edabc4
Merge branch 'main' into develop
sanderPostma Jul 11, 2025
420b206
chore: package.json stuff
sanderPostma Jul 11, 2025
d6be09c
chore: Only release main branch for now
sanderPostma Jul 15, 2025
9b26549
chore: publishConfig private until approval
sanderPostma Jul 15, 2025
af70252
chore: Addressed PR feedback
sanderPostma Jul 15, 2025
911ca57
chore: Addressed PR feedback
sanderPostma Jul 16, 2025
a7198b4
chore: Set npm to public
sanderPostma Jul 21, 2025
dca7a77
chore: set version
sanderPostma Jul 21, 2025
d3f29cd
chore: cleanup
sanderPostma Jul 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/release.yml
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
- 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
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,4 @@ dist
# Vite logs files
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
/.idea/
Loading
Loading