Skip to content

Commit d66d81b

Browse files
chore: separate repository (#1)
Signed-off-by: Berend Sliedrecht <[email protected]>
1 parent 18bd1e5 commit d66d81b

File tree

220 files changed

+9759
-41286
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

220 files changed

+9759
-41286
lines changed

.github/workflows/ci.yml

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
name: Continuous Integration
2+
3+
on:
4+
pull_request_review:
5+
6+
pull_request:
7+
branches:
8+
- main
9+
push:
10+
branches:
11+
- main
12+
13+
jobs:
14+
validate:
15+
if: github.event_name != 'pull_request_review' || github.event.pull_request.head.ref == 'changeset-release/main'
16+
runs-on: ubuntu-24.04
17+
name: Validate
18+
steps:
19+
- name: Checkout Repo
20+
uses: actions/checkout@v4
21+
22+
- uses: pnpm/action-setup@v4
23+
- name: Setup NodeJS
24+
uses: actions/setup-node@v4
25+
with:
26+
node-version: 22
27+
cache: "pnpm"
28+
29+
- name: Install dependencies
30+
run: pnpm install --frozen-lockfile
31+
32+
- name: Check Style
33+
run: pnpm style:check
34+
35+
- name: Check Types
36+
run: pnpm types:check
37+
38+
- name: Compile
39+
run: pnpm build
40+
41+
tests:
42+
runs-on: ubuntu-24.04
43+
name: Tests
44+
if: github.event_name != 'pull_request_review' || github.event.pull_request.head.ref == 'changeset-release/main'
45+
46+
strategy:
47+
fail-fast: false
48+
matrix:
49+
node-version: [18, 20, 22]
50+
51+
steps:
52+
- name: Checkout Repo
53+
uses: actions/checkout@v4
54+
55+
- uses: pnpm/action-setup@v4
56+
- name: Setup NodeJS
57+
id: setup-node
58+
uses: actions/setup-node@v4
59+
with:
60+
node-version: ${{ matrix.node-version }}
61+
62+
# See https://github.com/actions/setup-node/issues/641#issuecomment-1358859686
63+
- name: pnpm cache path
64+
id: pnpm-cache-path
65+
run: |
66+
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
67+
68+
- name: pnpm cache
69+
uses: actions/cache@v4
70+
with:
71+
path: ${{ steps.pnpm-cache-path.outputs.STORE_PATH }}
72+
key: ${{ runner.os }}-${{ steps.setup-node.outputs.node-version }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
73+
restore-keys: |
74+
${{ runner.os }}-${{ steps.setup-node.outputs.node-version }}-pnpm-store-
75+
76+
- name: Install dependencies
77+
run: pnpm install --frozen-lockfile
78+
79+
- name: Run tests
80+
run: pnpm test

.github/workflows/release.yml

+102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
concurrency: ${{ github.workflow }}-${{ github.ref }}
9+
10+
jobs:
11+
release-stable:
12+
runs-on: ubuntu-24.04
13+
name: Release Stable
14+
outputs:
15+
published: ${{ steps.changesets.outputs.published }}
16+
steps:
17+
- name: Checkout Repo
18+
uses: actions/checkout@v4
19+
20+
- uses: pnpm/action-setup@v4
21+
- name: Setup NodeJS
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: 22
25+
cache: "pnpm"
26+
27+
- name: Install Dependencies
28+
run: pnpm install --frozen-lockfile
29+
30+
- name: Create Release Pull Request or Publish to npm
31+
id: changesets
32+
uses: changesets/action@v1
33+
with:
34+
title: "chore(release): new version"
35+
commit: "chore(release): new version"
36+
publish: pnpm release
37+
version: pnpm changeset-version
38+
env:
39+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
41+
42+
- name: Get current package version
43+
id: get_version
44+
run: echo "CURRENT_PACKAGE_VERSION=$(node -p "require('./packages/anoncreds-shared/package.json').version")" >> $GITHUB_ENV
45+
46+
- name: Create Github Release
47+
if: steps.changesets.outputs.published == 'true'
48+
uses: softprops/action-gh-release@v2
49+
with:
50+
tag_name: v${{ env.CURRENT_PACKAGE_VERSION }}
51+
52+
release-unstable:
53+
runs-on: ubuntu-24.04
54+
name: Release Unstable
55+
needs: release-stable
56+
if: always() && github.event_name == 'push' && needs.release-stable.outputs.published == 'false'
57+
steps:
58+
- name: Checkout Repo
59+
uses: actions/checkout@v4
60+
61+
- uses: pnpm/action-setup@v4
62+
- name: Setup NodeJS
63+
uses: actions/setup-node@v4
64+
with:
65+
node-version: 20
66+
cache: "pnpm"
67+
68+
- name: Install Dependencies
69+
run: pnpm install --frozen-lockfile
70+
71+
- name: Creating .npmrc
72+
run: |
73+
cat << EOF > ".npmrc"
74+
//registry.npmjs.org/:_authToken=$NPM_TOKEN
75+
EOF
76+
env:
77+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
78+
79+
- name: Create unstable release
80+
env:
81+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
82+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
83+
run: |
84+
# this ensures there's always a patch release created
85+
cat << 'EOF' > .changeset/snapshot-template-changeset.md
86+
---
87+
'@openwallet-foundation/anoncreds-shared': patch
88+
---
89+
90+
snapshot release
91+
EOF
92+
93+
pnpm changeset version --snapshot alpha
94+
pnpm style:fix
95+
pnpm build
96+
pnpm changeset publish --tag alpha
97+
98+
CURRENT_PACKAGE_VERSION=$(node -p "require('./packages/anoncreds-shared/package.json').version")
99+
git config --global user.name "github-actions[bot]"
100+
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
101+
git tag v$CURRENT_PACKAGE_VERSION
102+
git push origin v$CURRENT_PACKAGE_VERSION --no-verify

.gitignore

+14-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
1-
.vscode
2-
target
3-
out
4-
Cargo.lock
51
.DS_Store
6-
.tmp
7-
*.so
82
*.tgz
3+
*.so
4+
node_modules
5+
6+
build
7+
8+
packages/anoncreds-nodejs/native
9+
packages/anoncreds-react-native/native
10+
packages/anoncreds-react-native/android/build
11+
packages/anoncreds-react-native/android/.cxx
12+
.gradle
13+
14+
examples/anoncreds-react-native-example/android
15+
examples/anoncreds-react-native-example/ios
16+
examples/anoncreds-react-native-example/.expo

wrappers/javascript/.npmrc .npmrc

File renamed without changes.

0 commit comments

Comments
 (0)