Skip to content

chore(deps): update shared components packages #454

chore(deps): update shared components packages

chore(deps): update shared components packages #454

Workflow file for this run

name: SDK PR verification and build
on:
pull_request:
branches: [ main ]
jobs:
sdkbuild:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn build
- name: Merge Changes if PR created by bot
if: github.actor == 'app-services-ci'
run: gh pr merge --auto --delete-branch --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.CI_USER_TOKEN }}