Screenshot test #58
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: Screenshot test | |
# push: | |
# paths: | |
# - ".github/workflows/figma-export.yml" | |
on: | |
workflow_dispatch: | |
inputs: | |
fileID: | |
description: "Put Figma FileID to generate screenshot testing" | |
required: true | |
default: "WCkDDzlXE16R6yXaljxddj" | |
draft: | |
type: boolean | |
default: true | |
description: Draft PR | |
env: | |
FIGMA_TOKEN: ${{ secrets.FIGMA_TOKEN}} | |
jobs: | |
generate-screenshots-master: | |
name: Acceptance tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Checkout branch or create new one | |
run: | | |
git fetch | |
if git branch -a | grep origin/acceptance-tests; then | |
git checkout acceptance-tests | |
else | |
git checkout -b acceptance-tests | |
fi | |
- name: Instalar Homebrew | |
run: | | |
sudo apt-get install -y librsvg2-bin | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
- name: Update master to last version | |
run: npx -p @figma-export/cli -p @figma-export/output-components-as-svg figma-export components WCkDDzlXE16R6yXaljxddj -O @figma-export/output-components-as-svg | |
- name: convert-svg2png | |
run: | | |
find output -type f -name "*.svg" -exec rsvg-convert {} -o {}.png \; | |
find output -type f -name "*.svg" -exec rm -f {} \; | |
- name: Commit & Push | |
run: | | |
git config user.name "github-actions" | |
git config user.email "github-actions[bot]@users.noreply.github.com" | |
git add . | |
git commit -m "Screenshot tests from master" | |
git push origin acceptance-tests | |
- name: Checkout branch or create new one | |
run: | | |
git fetch | |
if git branch -a | grep origin/${{ github.event.inputs.fileID }}; then | |
git checkout ${{ github.event.inputs.fileID }} | |
else | |
git checkout -b ${{ github.event.inputs.fileID }} | |
fi | |
- name: Export new screenshots | |
run: npx -p @figma-export/cli -p @figma-export/output-components-as-svg figma-export components ${{ github.event.inputs.fileID }} -O @figma-export/output-components-as-svg | |
- name: convert-svg2png | |
run: | | |
find output -type f -name "*.svg" -exec rsvg-convert {} -o {}.png \; | |
find output -type f -name "*.svg" -exec rm -f {} \; | |
- name: Commit & Push | |
run: | | |
git config user.name "github-actions" | |
git config user.email "github-actions[bot]@users.noreply.github.com" | |
git add . | |
git commit -m "Screenshot tests from ${{ github.event.inputs.fileID }}" | |
git push origin ${{ github.event.inputs.fileID }} | |
# - name: Create Pull-Request | |
# uses: repo-sync/pull-request@v2 | |
# with: | |
# source_branch: ${{ github.event.inputs.fileID }} | |
# destination_branch: "acceptance-tests" | |
# pr_title: "Acceptance tests for ${{ github.event.inputs.fileID }} file" | |
# pr_draft: ${{ github.event.inputs.draft }} | |
# github_token: ${{ secrets.GITHUB_TOKEN }} |