This repository was archived by the owner on Apr 6, 2026. It is now read-only.
build(deps): update dependency @zeepkist/graphql to ~1.328.0 #3976
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: | |
| workflow_dispatch: | |
| env: | |
| FORCE_COLOR: true | |
| NODE_VERSION: 20 | |
| jobs: | |
| setup: | |
| name: Lint Bot | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| cache: 'pnpm' | |
| - name: Install Dependencies | |
| run: pnpm install --no-frozen-lockfile # For some reason, pnpm install fails with a frozen lockfile | |
| - name: Run Linter | |
| run: pnpm lint | |
| - name: Run Tests | |
| run: pnpm coverage | |
| - name: Create Release | |
| if: success() && github.ref == 'refs/heads/develop' | |
| run: pnpm semantic-release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |