Skip to content

Bump github.com/aws/aws-sdk-go from 1.44.299 to 1.44.300 #17852

Bump github.com/aws/aws-sdk-go from 1.44.299 to 1.44.300

Bump github.com/aws/aws-sdk-go from 1.44.299 to 1.44.300 #17852

Workflow file for this run

name: Happo CI
on:
pull_request:
branches: [main]
jobs:
changes:
runs-on: ubuntu-latest
outputs:
frontend: ${{ steps.filter.outputs.frontend }}
steps:
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
frontend:
- 'src/**'
- '.storybook/**'
- '.happo.js'
- 'yarn.lock'
happo:
needs: changes
if: ${{ needs.changes.outputs.frontend == 'true' }}
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/[email protected]
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: '18.13.0'
- name: Install dependencies
run: yarn install
- name: Start Happo run
run: yarn happo-ci-github-actions
env:
HAPPO_API_KEY: ${{ secrets.HAPPO_API_KEY }}
HAPPO_API_SECRET: ${{ secrets.HAPPO_API_SECRET }}