Skip to content

Bump the dev-dependencies group with 9 updates #491

Bump the dev-dependencies group with 9 updates

Bump the dev-dependencies group with 9 updates #491

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: VS Code Extension CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- name: Install xvfb and run tests
run: |
sudo apt-get install xvfb
xvfb-run --auto-servernum npm test
env:
CI: true