Skip to content

GH-162: Initial implementation of overlay-based 'focus fix'. #170

GH-162: Initial implementation of overlay-based 'focus fix'.

GH-162: Initial implementation of overlay-based 'focus fix'. #170

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
env:
HEADLESS: true
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Node.js dependencies
run: npm install
- name: Lint Code
run: npm run lint
- name: Node Tests
run: xvfb-run --auto-servernum npm test
- name: Cleanup after xvfb
uses: bcomnes/cleanup-xvfb@v1
- name: Install Security Audit Globally
run: npm install -g npm-audit-resolver
- name: Security Audit
run: check-audit