Skip to content

Commit

Permalink
Add verify step to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Jan 23, 2025
1 parent 46e37c7 commit 941ec23
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 941ec23

Please sign in to comment.