mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 18:31:44 +03:00
23 lines
531 B
YAML
23 lines
531 B
YAML
|
name: Chromatic Deployment
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- 'pkg/interface/**'
|
||
|
|
||
|
jobs:
|
||
|
chromatic-deployment:
|
||
|
runs-on: ubuntu-latest
|
||
|
name: "Deploy Chromatic"
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
- run: cd 'pkg/interface' && npm i
|
||
|
- name: Publish to Chromatic
|
||
|
uses: chromaui/action@v1
|
||
|
with:
|
||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
|
||
|
working-directory: pkg/interface
|