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 b7ad976 commit 3d6be96Copy full SHA for 3d6be96
.github/workflows/validate.yml
@@ -24,8 +24,11 @@ jobs:
24
node-version: 20
25
26
- name: ▶️ Add repo
27
- run:
28
- npx --yes epicshop add ${{ github.event.repository.name }} ./workshop
+ run: |
+ npx --yes epicshop@latest add ${{ github.event.repository.name }} ./workshop
29
+ env:
30
+ # Kept getting npm ECOMPROMISED errors on windows. This fixed it.
31
+ npm_config_cache: ${{ runner.temp }}/npm-cache
32
33
# TOOD: bring this back when CI is more reliable
34
# - name: ▶️ Run tests
0 commit comments