Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 1 addition & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
submodules: false
submodules: recursive

- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -31,9 +31,6 @@ jobs:
- name: Install dependencies
run: npm i

- name: Initialize Splice Submodule
run: git submodule update --init --depth 1 libs/splice

- name: Build package
run: npm run build

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test CN-Quickstart Integration
name: Tests

on:
push:
Expand All @@ -11,15 +11,15 @@ on:
workflow_dispatch:

jobs:
test-cn-quickstart:
tests:
runs-on: ubuntu-latest
timeout-minutes: 60

steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: false
submodules: recursive

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down Expand Up @@ -79,12 +79,6 @@ jobs:
git commit -m "chore: auto-fix linting issues [skip ci]"
git push

- name: Initialize Submodules
if: steps.quickstart-prep-cache-restore.outputs.cache-hit != 'true'
run: |
git submodule update --init --depth 1 libs/splice
git submodule update --init --recursive libs/cn-quickstart

- name: Setup CN-Quickstart
if: steps.quickstart-prep-cache-restore.outputs.cache-hit != 'true'
run: |
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
[submodule "libs/splice"]
path = libs/splice
url = https://github.com/hyperledger-labs/splice
[submodule "libs/cn-quickstart"]
path = libs/cn-quickstart
url = https://github.com/digital-asset/cn-quickstart
126 changes: 0 additions & 126 deletions examples/README.md

This file was deleted.

105 changes: 0 additions & 105 deletions examples/localnet-with-oauth2.ts

This file was deleted.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
"docs": "tsx scripts/update-docs-version.ts && tsx scripts/generate-operation-docs.ts",
"docs:build": "npm run docs && cd docs && bundle exec jekyll build",
"docs:dev": "npm run docs && cd docs && bundle exec jekyll serve --livereload --port 4000",
"example:connect": "tsx examples/localnet-with-oauth2.ts",
"fix": "npm run lint:fix && npm run format:fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.lint.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"rootDir": ".",
"outDir": "./build"
},
"include": ["src/**/*", "test/**/*", "scripts/**/*", "examples/**/*"],
"include": ["src/**/*", "test/**/*", "scripts/**/*"],
"exclude": ["**/*.example.ts"]
}
Loading