Skip to content

Fix spinning wheel in boot apps view (#338) #330

Fix spinning wheel in boot apps view (#338)

Fix spinning wheel in boot apps view (#338) #330

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
linux:
name: Linux
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Setup Build Environment
run: |
sudo apt-get update
sudo apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev libxss1 dbus xvfb libgtk-3-0 libgbm1
sudo /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
sleep 3
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install Node.js modules
run: npm install
- name: Install VSCE
run: npm install -g vsce
- name: Linting
run: npm run tslint
- name: Compiling
run: npm run compile
- name: Build VSIX file
run: vsce package
- name: Test extension
run: DISPLAY=:99 npm test