From 4b178e0114ea3e07bbc3adefb7369c0502e7687e Mon Sep 17 00:00:00 2001 From: Frostebite Date: Thu, 4 Sep 2025 22:58:00 +0100 Subject: [PATCH] ci: add Integrity workflow using yarn test:ci with forceExit/detectOpenHandles --- .github/workflows/integrity.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/integrity.yml diff --git a/.github/workflows/integrity.yml b/.github/workflows/integrity.yml new file mode 100644 index 00000000..d9f14fcb --- /dev/null +++ b/.github/workflows/integrity.yml @@ -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 + +