Skip to content

comparing pasted content ignoring whitespace #93

comparing pasted content ignoring whitespace

comparing pasted content ignoring whitespace #93

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
- name: npm install
run: npm install
- name: lint
run: npm run lint
test:
strategy:
fail-fast: false
matrix:
vscode:
- 'stable'
os:
- windows-latest
- macos-latest
- ubuntu-latest
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
- name: Set up Xvfb (Ubuntu)
run: |
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
echo ">>> Started xvfb"
if: matrix.os == 'ubuntu-latest'
- name: Clean Install Dependencies
run: npm ci
- name: Run Tests
run: npm test
env:
CI: true
DISPLAY: ':99.0'
VSCODE_VERSION: ${{ matrix.vscode }}