-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: switch to GitHub actions (#38)
- Loading branch information
Showing
9 changed files
with
85 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
### Input (bash) code | ||
|
||
```sh | ||
|
||
``` | ||
|
||
### Expected output ShellJS (JavaScript) code | ||
|
||
```javascript | ||
|
||
``` | ||
|
||
### Actual output ShellJS (JavaScript) code | ||
|
||
```javascript | ||
|
||
``` | ||
|
||
<!-- If you have any other comments to add, please add them below. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Security Policy | ||
|
||
Thank you for reaching out about security! Please note that this project is | ||
maintained on a best-effort basis, however I still intend to prioritize | ||
reviewing and addressing security issues. | ||
|
||
## Supported Versions | ||
|
||
I generally only support the latest release (see | ||
https://www.npmjs.com/package/shelljs-transpiler) and the web version hosted on | ||
GitHub Pages (https://nfischer.github.io/shelljs-transpiler/). My goal is to | ||
release security fixes as patch releases on top of whatever was most recently | ||
shipped. | ||
|
||
## Reporting a Vulnerability | ||
|
||
Please report security vulnerabilities to [email protected]. I should respond | ||
within a few days. Although it's not strictly required, it helps me out if you | ||
can include any proof of concept exploit code, suggested fix, etc. | ||
|
||
**Please do not publicly disclose the suspected vulnerability** until I have a | ||
chance to review your report. I'd like a chance to patch the code before the | ||
issue is known to the public. | ||
|
||
Please **only** use this email for security issues. It's also OK to use the | ||
email if you're legitimately unsure if this is a security issue (better safe | ||
than sorry). But for all other non-security issues, please use the GitHub issue | ||
tracker. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: CI | ||
on: | ||
- push | ||
- pull_request | ||
jobs: | ||
test: | ||
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: | ||
- 10 | ||
- 12 | ||
- 14 | ||
- 16 | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
- windows-latest | ||
steps: | ||
- name: Checkout repository and submodules | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: npm install | ||
- run: npm run test | ||
- uses: codecov/codecov-action@v2 | ||
with: | ||
fail_ci_if_error: true |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,5 +51,8 @@ | |
"dependencies": { | ||
"minimist": "^1.2.0", | ||
"shelljs": "^0.7.0" | ||
}, | ||
"engines": { | ||
"node": ">=10" | ||
} | ||
} |