We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1392ae9 commit 5740cbdCopy full SHA for 5740cbd
.github/workflows/canary.yaml
@@ -14,13 +14,22 @@ jobs:
14
name: Publish Canary
15
if: ${{ github.event.workflow_run.event == 'pull_request' }}
16
steps:
17
+ - name: Checkout repo
18
+ uses: actions/checkout@v2
19
+ with:
20
+ persist-credentials: false
21
+
22
- name: Setup Node.js
23
uses: actions/setup-node@v2
24
with:
25
+ cache: npm
26
node-version: ${{ env.NODE_VERSION_USED_FOR_DEVELOPMENT }}
27
# 'registry-url' is required for 'npm publish'
28
registry-url: 'https://registry.npmjs.org'
29
30
+ - name: Install Dependencies
31
+ run: npm ci --ignore-scripts
32
33
- name: Download event.json
34
run: gh run download "$CI_WORKFLOW_ID" -n event.json
35
env:
0 commit comments