pushci 0.6.1 → 0.7.0
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/README.md +8 -4
- package/bin/pushci.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
**Zero-config AI CI/CD. Runs on your machine. Free forever.**
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
npm install -g pushci # one-time install
|
|
7
|
+
pushci init # AI detects your stack in 30 seconds
|
|
8
|
+
git push # tests run automatically
|
|
8
9
|
```
|
|
9
10
|
|
|
10
11
|
## Why PushCI?
|
|
@@ -20,8 +21,11 @@ git push # tests run automatically
|
|
|
20
21
|
## Quick Start
|
|
21
22
|
|
|
22
23
|
```bash
|
|
23
|
-
# Install
|
|
24
|
-
|
|
24
|
+
# Install globally (recommended — instant on every run)
|
|
25
|
+
npm install -g pushci
|
|
26
|
+
|
|
27
|
+
# Auto-detect your stack
|
|
28
|
+
pushci init
|
|
25
29
|
|
|
26
30
|
# Run CI locally
|
|
27
31
|
pushci run
|
package/bin/pushci.js
CHANGED
|
@@ -4,7 +4,7 @@ const fs = require('fs');
|
|
|
4
4
|
const path = require('path');
|
|
5
5
|
const os = require('os');
|
|
6
6
|
|
|
7
|
-
const VERSION = '0.
|
|
7
|
+
const VERSION = '0.7.0';
|
|
8
8
|
const BINARY_NAME = os.platform() === 'win32' ? 'pushci.exe' : 'pushci';
|
|
9
9
|
const CDN = 'https://pushci-releases.broad-dew-49ad.workers.dev';
|
|
10
10
|
|