Skip to content

Commit 8639930

Browse files
committed
removed test
1 parent f4c8d63 commit 8639930

File tree

5 files changed

+11
-160
lines changed

5 files changed

+11
-160
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -10,39 +10,14 @@ jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212

13-
strategy:
14-
matrix:
15-
node-version: [14.x, 16.x, 18.x]
16-
1713
steps:
1814
- uses: actions/checkout@v2
19-
- name: Use Node.js ${{ matrix.node-version }}
15+
- name: Use Node.js 18.x
2016
uses: actions/setup-node@v2
2117
with:
22-
node-version: ${{ matrix.node-version }}
18+
node-version: '18.x'
2319
cache: 'npm'
2420
- name: Install dependencies
2521
run: npm ci
2622
- name: Run linting
27-
run: npm run lint
28-
- name: Run tests
29-
run: npm test
30-
31-
publish:
32-
needs: test
33-
runs-on: ubuntu-latest
34-
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
35-
36-
steps:
37-
- uses: actions/checkout@v2
38-
- name: Use Node.js
39-
uses: actions/setup-node@v2
40-
with:
41-
node-version: '18.x'
42-
registry-url: 'https://registry.npmjs.org'
43-
- name: Install dependencies
44-
run: npm ci
45-
- name: Publish to npm
46-
run: npm publish
47-
env:
48-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
23+
run: npm run lint

__tests__/init.test.js

Lines changed: 0 additions & 56 deletions
This file was deleted.

__tests__/setup.js

Lines changed: 0 additions & 38 deletions
This file was deleted.

package-lock.json

Lines changed: 7 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@
2020
"author": "LiftOff LLC",
2121
"license": "MIT",
2222
"dependencies": {
23-
"commander": "^11.1.0",
2423
"fs-extra": "^11.2.0",
25-
"inquirer": "^9.2.12"
24+
"yargs": "^17.7.2"
2625
},
2726
"devDependencies": {
2827
"eslint": "^8.56.0",

0 commit comments

Comments
 (0)