Update vsce and ovsx #8
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: build | |
on: | |
- push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: | | |
# https://github.com/microsoft/vscode/issues/33998 | |
sudo apt-get install libsecret-1-dev | |
export DISPLAY=':99.0' | |
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | |
yarn | |
yarn run lint | |
yarn run test | |
yarn run coverage:report | |
- uses: coverallsapp/github-action@v2 |