Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

Bump the typescript-eslint group with 2 updates #35

Bump the typescript-eslint group with 2 updates

Bump the typescript-eslint group with 2 updates #35

Workflow file for this run

name: Code Quality Checks
on:
pull_request:
branches: [main]
jobs:
run-test-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node environment
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm ci
- name: Setup environment
run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & echo ">>> Started xvfb"
- name: Run tests
run: npm run test
env:
DISPLAY: ":99.0"