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 048cfe5 commit 8aa08dbCopy full SHA for 8aa08db
2 files changed
.github/workflows/ci.yml
@@ -25,6 +25,11 @@ jobs:
25
exit 1
26
fi
27
28
+ if [ ! -f yarn.lock ] && [ ! -f package-lock.json ]; then
29
+ echo "ERROR: No lockfile found,Policy requires exactly ONE package manager lockfile"
30
+ exit 1
31
+ fi
32
+
33
- name: Use Node.js 22.11.0
34
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
35
with:
.github/workflows/release.yml
@@ -85,6 +85,11 @@ jobs:
85
86
87
88
89
90
91
92
93
# GIT CONFIGURATION
94
- run: |
95
git config user.name github-actions
0 commit comments