Add group self-removal #62
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: XMTP CLI | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - "packages/xmtp-cli/**" | |
| - ".github/workflows/xmtp-cli.yml" | |
| - "dev/**" | |
| - ".node-version" | |
| - ".yarnrc.yml" | |
| - "turbo.json" | |
| jobs: | |
| typecheck: | |
| name: Typecheck | |
| runs-on: warp-ubuntu-latest-x64-8x | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version-file: ".node-version" | |
| cache: "yarn" | |
| env: | |
| SKIP_YARN_COREPACK_CHECK: "1" | |
| - name: Enable corepack | |
| run: corepack enable | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Typecheck | |
| run: yarn turbo run typecheck --filter='./packages/xmtp-cli' | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: echo "Nothing to test" | |
| build: | |
| name: Build | |
| runs-on: warp-ubuntu-latest-x64-8x | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version-file: ".node-version" | |
| cache: "yarn" | |
| env: | |
| SKIP_YARN_COREPACK_CHECK: "1" | |
| - name: Enable corepack | |
| run: corepack enable | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Build | |
| run: yarn turbo run build --filter='./packages/xmtp-cli' |