File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - main
8+
9+ jobs :
10+ test :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v4
14+ - uses : actions/setup-node@v5
15+ with :
16+ node-version : 22
17+ - run : npm test
18+ - run : npm run lint
Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ nteract Linux installer.
66The endpoint intentionally stays separate from the marketing site. It serves
77plain shell, not HTML, and it does not install agent-specific integrations.
88
9+ The bootstrap currently downloads the merged desktop installer from
10+ ` raw.githubusercontent.com/nteract/desktop/main/scripts/install-linux-release ` .
11+ If desktop releases later publish the installer as a release asset, switch the
12+ bootstrap URL to that immutable release asset.
13+
914## Local development
1015
1116``` sh
@@ -29,8 +34,9 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.nteract.io | \
2934
3035## Vercel domain setup
3136
32- Add ` sh.nteract.io ` to the Vercel project, then configure DNS for the ` sh `
33- subdomain using the CNAME target Vercel reports:
37+ ` sh.nteract.io ` is added to the ` install-sh ` Vercel project under the ` nteract `
38+ team. If it ever needs to be recreated, add the domain to the Vercel project,
39+ then configure DNS for the ` sh ` subdomain using the CNAME target Vercel reports:
3440
3541``` sh
3642vercel domains add sh.nteract.io
You can’t perform that action at this time.
0 commit comments