-
Notifications
You must be signed in to change notification settings - Fork 25
51 lines (49 loc) · 1.73 KB
/
scip-snapshot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: scip-snapshots
on:
push:
branches:
- scip
pull_request:
branches:
- scip
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install asdf.
uses: asdf-vm/actions/[email protected]
- name: Cache asdf and asdf-managed tools.
uses: actions/[email protected]
id: asdf-cache
with:
path: ${{ env.ASDF_DIR }}
key: asdf-${{ runner.os}}-${{ hashFiles('**/.tool-versions') }}
- name: Install asdf tools (if not cached).
if: steps.asdf-cache.outputs.cache-hit != 'true'
uses: asdf-vm/actions/[email protected]
- name: Get npm cache directory
id: npm-cache
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: 'Check package-lock.json up-to-date'
run: |
CMD="cd ./packages/pyright-scip && npm install --package-lock-only --ignore-scripts"
bash -c "$CMD"
if ! git diff --quiet; then
git diff
echo ""
echo "----------------------------------------------------------------------------------------------"
echo "Re-run $CMD and push"
echo "----------------------------------------------------------------------------------------------"
exit 1
fi
- run: npm install
- run: cd ./packages/pyright-scip/ && npm install && npm run build
- run: python --version
- run: cd ./packages/pyright-scip/ && npm run check-snapshots