Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
Merge branch 'scmn-dev:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
abdfnx authored Jan 21, 2022
2 parents 40c8864 + de7b7a5 commit dfca6f0
Show file tree
Hide file tree
Showing 4 changed files with 140 additions and 106 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Secman Build CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2.4.0
with:
node-version: 17

- name: Install Dependencies
run: yarn

- name: Build
run: yarn build

- name: Run Tests
run: |
./bin/run -h
./bin/run init
./bin/run crypto --sha256 "Hello World"
6 changes: 3 additions & 3 deletions package.json
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
"@oclif/config": "^1",
"@oclif/core": "1.0.11",
"@oclif/plugin-help": "5.1.10",
"@oclif/plugin-not-found": "^1.2.4",
"@oclif/plugin-not-found": "^2.2.1",
"@secman/spinner": "0.1.3",
"ansi-regex": "6.0.1",
"ansi-regex": "5.0.1",
"axios": "^0.23.0",
"bl": "^5.0.0",
"cfonts": "^2.10.0",
Expand Down Expand Up @@ -70,7 +70,7 @@
"typescript": "^4.4.4",
"wcwidth": "^1.0.1",
"whatwg-fetch": "^3.6.2",
"wrap-ansi": "4.0.0",
"wrap-ansi": "6.2.0",
"write-file-atomic": "^3.0.3",
"yargs": "^17.2.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/commands/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export default class Auth extends Command {
console.log(
chalk.red.bold(
`\nInvalid email or master password. if you don't have an account, please create one using the command ${chalk.gray.bold(
"`secman auth --create-account`."
"`secman auth --createAccount`."
)}`
)
);
Expand Down
Loading

0 comments on commit dfca6f0

Please sign in to comment.