Trying new GHA for taking a screenshot #245
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: Generate Mindmap | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
paths: | |
- ".github/workflows/generate-mindmap.yml" | |
- "pattern-categorization/innersource-program-mind-map.md" | |
- "pattern-categorization/package.json" | |
defaults: | |
run: | |
working-directory: pattern-categorization | |
jobs: | |
generate-mindmap: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'npm' | |
cache-dependency-path: pattern-categorization/package-lock.json | |
- name: Install Node.js dependencies | |
run: npm install | |
- name: Run Markmap | |
run: npx markmap --no-toolbar innersource-program-mind-map.md -o innersource-program-mind-map.html | |
# - name: Screenshot Markmap Website | |
# id: screenshot-generator | |
# uses: swinton/[email protected] | |
# with: | |
# source: pattern-categorization/innersource-program-mind-map.html | |
# destination: innersource-program-mind-map.png | |
# full-page: false | |
# - name: Copy Screenshot | |
# run: cp ${{ steps.screenshot-generator.outputs.path }} . | |
# - name: Reduce Screenshot Size (PNG) | |
# run: npx optipng innersource-program-mind-map.png | |
# - name: Commit Changes | |
# uses: stefanzweifel/git-auto-commit-action@v4 | |
# with: | |
# commit_message: Re-creating markmap and screenshot | |
- name: install puppeteer-headful | |
uses: mujo-code/puppeteer-headful@master # Required for headful puppeteer | |
env: | |
CI: 'true' | |
- name: screenshots-ci-action | |
uses: flameddd/screenshots-ci-action@master | |
with: | |
url: file://${{ github.workspace }}/pattern-categorization/innersource-program-mind-map.html | |
# devices: iPhone 6,iPhone 6 landscape,Nexus 7,Pad Pro,Galaxy S III landscape,iPad Pro landscape | |
# - uses: actions/upload-artifact@v2 # Upload screenshots to Actions Artifacts via actions/upload-artifact@v2 | |
# with: | |
# path: screenshots | |
# name: Download-screenshots |