mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
18 lines
429 B
YAML
18 lines
429 B
YAML
name: "frontend:deploy:chromatic"
|
|
on: [push]
|
|
#on:
|
|
# push:
|
|
# branches:
|
|
# - master
|
|
jobs:
|
|
build-and-deploy:
|
|
name: Chromatic - Frontend
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Frontend | Build
|
|
run: npm install && npm run chromatic -- --exit-zero-on-changes |