github: Bump versions of github actions #137
This file contains hidden or 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: Build VS Code Extension | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| workflow_call: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: ./.github/actions/setup | |
| - if: runner.os == 'Linux' | |
| run: sudo apt-get update && sudo apt-get install -y imagemagick | |
| shell: bash | |
| - run: make -C src/web/vscode-extension install-deps package |