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

Bump @typescript-eslint/parser from 6.21.0 to 7.0.2 #11

Bump @typescript-eslint/parser from 6.21.0 to 7.0.2

Bump @typescript-eslint/parser from 6.21.0 to 7.0.2 #11

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"