File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 5757 env :
5858 GITHUB_TOKEN : ${{ secrets.GH_TKN }}
5959 run : npm run docker:test
60- continue-on-error : true
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3- source .env.sh
3+ # following commands should work without the GITHUB_TOKEN needing to be set.
44
55echo " ************** help *****************"
66
77# test handling of single parameter
88docker run --rm \
99-v ./dummy:/app/dummy \
1010-w /app \
11- -e GITHUB_TOKEN \
1211-e DEBUG \
1312github-graphql-client:latest " --help"
1413
14+ echo " ************** version *****************"
15+
16+ # test handling of single parameter
17+ docker run --rm \
18+ -v ./dummy:/app/dummy \
19+ -w /app \
20+ -e DEBUG \
21+ github-graphql-client:latest " -v"
22+
23+ # commands below need GITHUB_TOKEN to be set.
24+ source .env.sh
25+
1526echo " ************ branch arg missing *******************"
1627
1728# test handling of multiple parameters
You can’t perform that action at this time.
0 commit comments