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 8a21e88 commit d8aaa97Copy full SHA for d8aaa97
.github/workflows/scip-snapshot.yml
@@ -33,7 +33,18 @@ jobs:
33
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
34
restore-keys: |
35
${{ runner.os }}-node-
36
-
+ - name: 'Check package-lock.json up-to-date'
37
+ run: |
38
+ CMD="cd ./packages/pyright-scip && npm install --package-lock-only --ignore-scripts"
39
+ bash -c "$CMD"
40
+ if ! git diff --quiet; then
41
+ git diff
42
+ echo ""
43
+ echo "----------------------------------------------------------------"
44
+ echo "Re-run $CMD and push"
45
46
+ exit 1
47
+ fi
48
- run: npm install
49
- run: cd ./packages/pyright-scip/ && npm install && npm run build
50
- run: python --version
0 commit comments