Skip to content

chore(deps): bump @aws-sdk/client-sns from 3.160.0 to 3.395.0 #594

chore(deps): bump @aws-sdk/client-sns from 3.160.0 to 3.395.0

chore(deps): bump @aws-sdk/client-sns from 3.160.0 to 3.395.0 #594

Workflow file for this run

---
name: "Test"
on:
pull_request:
branches:
- main
jobs:
test: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- uses: actions/setup-node@v3
with:
node-version: "16"
- run: |
yarn
- run: |
yarn all
- name: Check for diff
id: diff
run: echo "{GIT_STATUS}=$(git status -s dist/)" >> $GITHUB_OUTPUT
- name: Push build
if: ${{ steps.diff.outputs.GIT_STATUS != '' }}
run: |
git config user.name github-actions
git config user.email [email protected]
git add dist/*
git commit -m "chore: Build Source"
git push