chore: temp disable canary releases #288
Workflow file for this run
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: Branch Check | |
| on: | |
| push: | |
| branches-ignore: | |
| - "main" # Ignores pushes to the main branch | |
| jobs: | |
| build: | |
| if: github.repository == 'SundaeSwap-finance/sundae-sdk' | |
| permissions: | |
| id-token: write | |
| contents: write | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v1 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22 | |
| # Install dependencies | |
| - name: Install | |
| run: bun install --frozen-lockfile --ignore-scripts | |
| # Lint | |
| - name: Lint | |
| run: bun lint | |
| # Build | |
| - name: Build | |
| run: bun run build | |
| # Run Tests | |
| - name: Run Tests | |
| run: bun test:all | |
| # Release TODO: Fix | |
| # - name: Release (Canary) | |
| # run: | | |
| # npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }} | |
| # bun changeset version --snapshot dev | |
| # bun publish:canary:ci |