feat: test CI #1
Workflow file for this run
This file contains 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
name: "Chromatic" | |
# Event for the workflow | |
on: push | |
# List of jobs | |
jobs: | |
chromatic-deployment: | |
# Operating System | |
runs-on: ubuntu-latest | |
# Job steps | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # 👈 Required to retrieve git history | |
- name: ASDF cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.asdf | |
key: ${{ runner.os }}-asdf-${{ hashFiles('.tool-versions') }} | |
id: asdf-cache | |
- name: Setup ASDF environment | |
run: | | |
ASDF_DIR=$HOME/.asdf | |
echo "ASDF_DIR=$ASDF_DIR" >> $GITHUB_ENV | |
echo "ASDF_DATA_DIR=$ASDF_DIR" >> $GITHUB_ENV | |
echo "$ASDF_DIR/bin" >> $GITHUB_PATH | |
echo "$ASDF_DIR/shims" >> $GITHUB_PATH | |
$ASDF_DIR/bin/asdf reshim | |
- name: Restore dependencies cache | |
id: deps-cache | |
uses: actions/cache@v3 | |
with: | |
path: deps | |
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }} | |
restore-keys: ${{ runner.os }}-mix- | |
- name: Install dependencies | |
run: pushd assets && npm ci && popd | |
- name: Publish to Chromatic | |
uses: chromaui/action@v1 | |
# Chromatic GitHub Action options | |
with: | |
# 👇 Chromatic projectToken, refer to the manage page to obtain it. | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} |