chore(deps): bump nanoid in the npm_and_yarn group across 1 directory #156
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .github/workflows/chromatic.yml | |
| # Workflow name | |
| name: "Chromatic" | |
| # Event for the workflow | |
| on: push | |
| # List of jobs | |
| jobs: | |
| chromatic: | |
| # Operating System | |
| runs-on: ubuntu-latest | |
| # Job steps | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Publish to Chromatic | |
| uses: chromaui/action@v1 | |
| # Chromatic GitHub Action options | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} |