t44 0.4.0-rc.13 → 0.4.0-rc.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/test.yaml +31 -0
- package/.o/GordianOpenIntegrity-CurrentLifehash.svg +1024 -1024
- package/.o/GordianOpenIntegrity-InceptionLifehash.svg +1024 -1024
- package/.o/GordianOpenIntegrity.yaml +15 -19
- package/README.md +2 -2
- package/caps/ProjectPublishing.ts +5 -3
- package/caps/ProjectRepository.ts +8 -1
- package/caps/WorkspaceConfig.yaml +2 -0
- package/caps/WorkspaceConfigFile.ts +15 -2
- package/caps/WorkspaceConnection.ts +24 -1
- package/caps/WorkspaceInfo.ts +31 -7
- package/caps/WorkspacePrompt.ts +25 -1
- package/caps/WorkspaceTest.ts +81 -5
- package/caps/providers/bunny.net/api-pull.test.ts +85 -1
- package/caps/providers/bunny.net/api-storage.test.ts +1 -1
- package/caps/providers/git-scm.com/ProjectPublishing.ts +122 -22
- package/caps/providers/vercel.com/api.test.ts +1 -1
- package/caps/providers/vercel.com/project.test.ts +1 -1
- package/examples/01-Lifecycle/main.test.ts +13 -18
- package/lib/key.ts +12 -0
- package/package.json +7 -4
- package/standalone-rt.ts +6 -1
- package/tsconfig.json +7 -1
- package/workspace-rt.ts +18 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
name: Tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ "main" ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ "main" ]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
test:
|
|
11
|
+
name: Run Tests
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- name: Checkout code
|
|
15
|
+
uses: actions/checkout@v4
|
|
16
|
+
|
|
17
|
+
- name: Setup Bun
|
|
18
|
+
uses: oven-sh/setup-bun@v2
|
|
19
|
+
with:
|
|
20
|
+
bun-version: latest
|
|
21
|
+
|
|
22
|
+
- name: Install dependencies
|
|
23
|
+
run: bun install
|
|
24
|
+
|
|
25
|
+
- name: Initialize workspace
|
|
26
|
+
run: ./bin/t44 init --yes
|
|
27
|
+
env:
|
|
28
|
+
T44_KEYS_PASSPHRASE: t44-ci-test
|
|
29
|
+
|
|
30
|
+
- name: Run tests
|
|
31
|
+
run: bun test --bail
|