Bump qs from 6.10.1 to 6.14.1 in /src/vscode-extension/drupalpod-ext #619
Workflow file for this run
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: Test VSCode Extension | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| uses: actions/checkout@v2 | |
| - | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: 14.x | |
| # @todo https://github.com/actions/setup-node/pull/299 | |
| # cache: true | |
| - | |
| run: yarn install | |
| working-directory: ./src/vscode-extension/drupalpod-ext | |
| # @todo run tests when "vscode-test" package works in GitPod and/or Actions. | |
| # - | |
| # run: yarn test | |
| # working-directory: ./src/vscode-extension/drupalpod-ext | |
| - | |
| run: yarn package | |
| working-directory: ./src/vscode-extension/drupalpod-ext |