refactor: replace EventSub with PubSub #1037
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Vite+ | |
| uses: voidzero-dev/setup-vp@v1 | |
| with: | |
| node-version: 24 | |
| cache: true | |
| run-install: true | |
| - name: GQL checks | |
| run: | | |
| vpx gql-tada generate output | |
| vpx gql-tada check | |
| - name: Type check | |
| run: vpr check | |
| - name: Check | |
| if: ${{ !cancelled() }} | |
| run: vp check |