-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add public action test to tests workflow
- Loading branch information
1 parent
787c0e1
commit ae708bf
Showing
1 changed file
with
13 additions
and
2 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Unit Tests | ||
name: Tests | ||
on: | ||
pull_request: | ||
branches: | ||
|
@@ -22,7 +22,7 @@ jobs: | |
- run: npm test | ||
|
||
# test action works running from the graph | ||
action-test: | ||
action-test-private: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
|
@@ -32,4 +32,15 @@ jobs: | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws_region: ${{ secrets.AWS_REGION }} | ||
secrets: '*secret*' | ||
parse_json: true | ||
|
||
action-test-public: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: action-factory/[email protected] | ||
with: | ||
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws_region: ${{ secrets.AWS_REGION }} | ||
secrets: 'my_secret*' | ||
parse_json: true |