GitHub Actions steps to cache VS Code stable when running extension tests
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Get VS Code versions | |
run: curl --output vscode-stable-versions.json https://update.code.visualstudio.com/api/releases/stable | |
- uses: actions/cache@v1 | |
with: | |
path: .vscode-test/ | |
key: ${{ runner.os }}-vscode-test-${{ hashFiles('vscode-stable-versions.json') }} | |
restore-keys: | | |
${{ runner.os }}-vscode-test- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment