Skip to content

Commit

Permalink
Add: ssh agent to GH workflow actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rdig committed Oct 14, 2021
1 parent 5e17273 commit 5c1eef2
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/triggerDeployXdaiQA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ jobs:
matrix:
node-version: [14.18.0]
steps:
- name: Start SSH Agent
uses: webfactory/ssh-agent@v0.5.3
with:
ssh-private-key: ${{ secrets.SSH_KEY }}
- name: Checkout subgraph repository
uses: actions/checkout@v2
with:
Expand All @@ -19,12 +23,12 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
# - name: npm upgrade
# run: npm i -g npm@8 --registry=https://registry.npmjs.org
# env:
# NPM_CONFIG_PREFIX: "~/.npm-global"
- name: npm upgrade
run: npm i -g npm@8 --registry=https://registry.npmjs.org --verbose
# env:
# NPM_CONFIG_PREFIX: "~/.npm-global"
- name: Install dependencies
run: npm ci
run: npm ci --verbose
- name: Checkout frontend repository
uses: actions/checkout@v2
with:
Expand Down

0 comments on commit 5c1eef2

Please sign in to comment.