Skip to content

Commit

Permalink
chore: deploy components on more app changes (#15398)
Browse files Browse the repository at this point in the history
This workflow was using eslint glob syntax which isn't used here, and
also we should trigger on source changes
  • Loading branch information
sfoster1 authored Jun 12, 2024
1 parent fb412ac commit d2f2617
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/components-test-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ on:
paths:
- 'Makefile'
- 'components/**'
- 'app/**/*.stories.@(js|jsx|ts|tsx)'
- 'app/**/*.stories.*'
- 'app/src/atoms/**/*'
- 'app/src/molecules/**/*'
- 'package.json'
- '.github/workflows/components-test-build-deploy.yaml'
push:
paths:
- 'components/**'
- 'app/**/*.stories.@(js|jsx|ts|tsx)'
- 'app/**/*.stories.*'
- 'app/src/atoms/**/*'
- 'app/src/molecules/**/*'
- 'package.json'
- '.github/workflows/components-test-build-deploy.yaml'
branches:
Expand Down

0 comments on commit d2f2617

Please sign in to comment.