ci: use yarn test:ci in integrity-check; remove redundant integrity.yml

pull/729/head
Frostebite 2025-09-04 23:20:33 +01:00
parent 016692526b
commit 12b6aaae61
2 changed files with 1 additions and 27 deletions

View File

@ -22,7 +22,7 @@ jobs:
node-version: '18' node-version: '18'
- run: yarn - run: yarn
- run: yarn lint - run: yarn lint
- run: yarn test --coverage - run: yarn test:ci --coverage
- run: bash <(curl -s https://codecov.io/bash) - run: bash <(curl -s https://codecov.io/bash)
- run: yarn build || { echo "build command should always succeed" ; exit 61; } - run: yarn build || { echo "build command should always succeed" ; exit 61; }
# - run: yarn build --quiet && git diff --quiet dist || { echo "dist should be auto generated" ; git diff dist ; exit 62; } # - run: yarn build --quiet && git diff --quiet dist || { echo "dist should be auto generated" ; git diff dist ; exit 62; }

View File

@ -1,26 +0,0 @@
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