Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Add more guidance around sending email via templates #24

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added storybook workflow for deploying airtable app storybook.
patcon committed Nov 17, 2020
commit 1a7a835ed670e508b8c7360d4248927fa6b06dfd
32 changes: 32 additions & 0 deletions .github/workflows/storybook-airtable-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# name of our action
name: 'Push StorybookJS to Chromatic'
# the event that will trigger the action
on:
push:
paths:
- 'airtable-apps/send_email/**'
- '.github/workflows/storybook-airtable-app.yml'

# what the action will do
jobs:
build-push:
# the operating system it will run on
runs-on: ubuntu-latest
# the list of steps that the action will go through
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

# Move all react files to root (including hidden dotfiles)
- run: |
shopt -s dotglob
git airtable-apps/send_email/* ./ -fk

- run: npm install

- uses: chromaui/action@v1
# options required to the GitHub chromatic action
with:
projectToken: ayhiuop76lu
token: ${{ secrets.GITHUB_TOKEN }}
6 changes: 5 additions & 1 deletion .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# name of our action
name: 'Push StorybookJS to Chromatic'
# the event that will trigger the action
on: push
on:
push:
paths:
- 'react-ui/**'
- '.github/workflows/storybook.yml'

# what the action will do
jobs: