We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b083b4 commit 3fe9fd9Copy full SHA for 3fe9fd9
1 file changed
.github/workflows/rich-navigation.yml
@@ -10,10 +10,21 @@ jobs:
10
runs-on: windows-latest
11
steps:
12
- uses: actions/checkout@v2
13
+
14
+ - uses: actions/cache@v2
15
+ id: caching-stage
16
+ name: Cache VS Code dependencies
17
+ with:
18
+ path: node_modules
19
+ key: ${{ runner.os }}-dependencies-${{ hashfiles('yarn.lock') }}
20
+ restore-keys: ${{ runner.os }}-dependencies-
21
22
- name: Install dependencies
23
+ if: steps.caching-stage.outputs.cache-hit != 'true'
24
run: yarn --frozen-lockfile
25
env:
26
CHILD_CONCURRENCY: 1
27
28
- uses: microsoft/RichCodeNavIndexer@v0.1
29
with:
30
languages: typescript
0 commit comments