@jskit-ai/create-app 0.1.67 → 0.1.68

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jskit-ai/create-app",
3
- "version": "0.1.67",
3
+ "version": "0.1.68",
4
4
  "description": "Scaffold minimal JSKIT app shells.",
5
5
  "type": "module",
6
6
  "files": [
@@ -101,6 +101,14 @@ test("latest JSKIT scaffold files are present at the app root", async () => {
101
101
  }
102
102
  });
103
103
 
104
+ test("starter shell keeps the default hosted CI workflow simple", async () => {
105
+ const workflowSource = await readFile(path.join(APP_ROOT, ".github", "workflows", "verify.yml"), "utf8");
106
+
107
+ assert.match(workflowSource, /run: npm run verify/);
108
+ assert.doesNotMatch(workflowSource, /jskit app verify --against/);
109
+ assert.doesNotMatch(workflowSource, /jskit app verify-ui/);
110
+ });
111
+
104
112
  test("starter shell does not include the app.manifest scaffold", async () => {
105
113
  await assert.rejects(access(path.join(APP_ROOT, "framework/app.manifest.mjs")), /ENOENT/);
106
114
  });