Skip to content

Check if WebView is disposed (before refreshing) #1229

Check if WebView is disposed (before refreshing)

Check if WebView is disposed (before refreshing) #1229

Workflow file for this run

name: Compile, lint and test
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- run: npm ci
- run: npm run lint
if: ${{ matrix.os == 'ubuntu-latest' }}
- run: npm run build-web
if: ${{ matrix.os == 'ubuntu-latest' }}
- run: xvfb-run -a npm t
if: ${{ matrix.os == 'ubuntu-latest' }}
- run: npm t
if: ${{ matrix.os == 'windows-latest' }}