ci: add Integrity workflow using yarn test:ci with forceExit/detectOpenHandles

pull/729/head
Frostebite 2025-09-04 22:58:00 +01:00
parent 6c4a85a2a0
commit 4b178e0114
1 changed files with 28 additions and 0 deletions

28
.github/workflows/integrity.yml vendored 100644
View File

@ -0,0 +1,28 @@
name: Integrity
on:
pull_request:
branches: [ "**" ]
push:
branches: [ "**" ]
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install
run: yarn install --frozen-lockfile
- name: Test (CI)
run: yarn test:ci
env:
CI: true