-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adds tar test * changes to action.js * change test file dist/index.js * fix * check test * adds test.js * Fixes build * change outPath * fix test * fix path of directory * fix test * move to parcel * change dist * downgrade core * fix index. * change test * fix index.js * change to pr
- Loading branch information
Showing
11 changed files
with
113 additions
and
6,745 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,29 @@ | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-18.04] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Compress action step | ||
uses: ./ # Uses an action in the root directory | ||
id: compress | ||
with: | ||
command: c | ||
cwd: ./test | ||
files: | | ||
./toCompress | ||
outPath: yolo.tar.gz | ||
# Use the output from the `compress` step | ||
- name: Get the output | ||
run: echo "The output was ${{ steps.compress.outputs.done }}" | ||
- uses: actions/upload-artifact@v1 | ||
with: | ||
name: yolo.tar.gz | ||
path: yolo.tar.gz |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
node_modules | ||
*.log | ||
.vscode | ||
.vscode | ||
.cache | ||
dist |
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
Oops, something went wrong.