From 941ec2329970a41de7aa5520c58908e01dec9b87 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Thu, 23 Jan 2025 13:16:59 -0500 Subject: [PATCH] Add verify step to CI --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36690eb2e..aa1729faa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,23 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - run: pnpm repo:lint:all + verify: + name: Verify + runs-on: ubuntu-latest + needs: ['install_dependencies'] + timeout-minutes: 10 + + steps: + - uses: wyvox/action@v1 + with: + pnpm-args: '--ignore-scripts' + node-version: 22.13.0 + repo-token: ${{ secrets.GITHUB_TOKEN }} + - run: pnpm lint:fix + - run: pnpm repo:update:conventions + - run: pnpm repo:update:metadata + - uses: wyvox/action-no-git-diff@v1 + test-chrome: name: Chrome runs-on: ubuntu-latest