mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-06-14 20:16:48 -07:00
ci: add Integrity workflow using yarn test:ci with forceExit/detectOpenHandles
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user