diff --git a/.github/workflows/integrity-check.yml b/.github/workflows/integrity-check.yml index 3c43650b..9ec70659 100644 --- a/.github/workflows/integrity-check.yml +++ b/.github/workflows/integrity-check.yml @@ -22,7 +22,7 @@ jobs: node-version: '18' - run: yarn - run: yarn lint - - run: yarn test --coverage + - run: yarn test:ci --coverage - run: bash <(curl -s https://codecov.io/bash) - 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; } diff --git a/.github/workflows/integrity.yml b/.github/workflows/integrity.yml deleted file mode 100644 index 27add8fb..00000000 --- a/.github/workflows/integrity.yml +++ /dev/null @@ -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