feat(xcm-api): Add support for XCM Router API Snowbridge transfers #261
This file contains 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
on: | |
push: | |
branches: | |
- main | |
name: release-please | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
id: release | |
with: | |
token: ${{ secrets.RELEASE_PLEASE_TOKEN }} | |
- uses: actions/checkout@v4 | |
if: ${{ steps.release.outputs.releases_created }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: "https://registry.npmjs.org" | |
if: ${{ steps.release.outputs.releases_created }} | |
- uses: pnpm/action-setup@v4 | |
if: ${{ steps.release.outputs.releases_created }} | |
- run: pnpm install | |
if: ${{ steps.release.outputs.releases_created }} | |
- run: pnpm build | |
if: ${{ steps.release.outputs.releases_created }} | |
- run: pnpm compile | |
if: ${{ steps.release.outputs.releases_created }} | |
- run: pnpm format:check | |
if: ${{ steps.release.outputs.releases_created }} | |
- run: pnpm lint:check | |
if: ${{ steps.release.outputs.releases_created }} | |
- run: pnpm test | |
if: ${{ steps.release.outputs.releases_created }} | |
- run: pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}" | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
if: ${{ steps.release.outputs.releases_created }} | |
- run: pnpm publish -r --no-git-checks --access=public | |
if: ${{ steps.release.outputs.releases_created }} |