build(deps-dev): bump vite-plugin-singlefile from 0.13.5 to 2.0.3 #2120
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: "Build, test and deploy mermaid-cli Docker image" | |
on: [push, pull_request] | |
concurrency: ci-${{ github.ref }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 90 | |
env: | |
DOCKERFILE: DockerfileBuild | |
IMAGENAME: mermaid-cli | |
DOCKER_IO_REPOSITORY: minlag/mermaid-cli | |
INPUT_DATA: test-positive | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install GitVersion | |
uses: gittools/actions/gitversion/[email protected] | |
with: | |
versionSpec: "5.x" | |
- name: Use GitVersion | |
id: gitversion # step id used as reference for output values | |
uses: gittools/actions/gitversion/[email protected] | |
- name: Convert repository name to lower case | |
run: echo "GITHUB_REPOSITORY_LOWER_CASE=$(echo $GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV | |
- name: Get release version | |
run: echo "RELEASE_VERSION=${{ steps.gitversion.outputs.semVer }}" >> $GITHUB_ENV | |
- name: Create image tag | |
run: echo "IMAGETAG=${{env.GITHUB_REPOSITORY_LOWER_CASE}}/$IMAGENAME:${{env.RELEASE_VERSION}}" >> $GITHUB_ENV | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build Test Image | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: ${{env.DOCKERFILE}} | |
load: true | |
tags: "${{env.IMAGETAG}}" | |
- name: Run e2e tests | |
run: bash run-tests.sh ${{env.INPUT_DATA}} ${{env.IMAGETAG}} | |
timeout-minutes: 5 | |
- name: Convert all svg files to png before uploading for automatic inspection | |
run: | | |
ls -la "$INPUT_DATA" | |
svg_files_to_convert=( | |
"$INPUT_DATA"/graph-with-br.mmd.svg | |
"$INPUT_DATA"/graph-with-br.mmd-stdin.svg | |
# svg file is named `-svg` so it doesn't overwrite .png file | |
"$INPUT_DATA"/flowchart1-red-background-svg.svg | |
"$INPUT_DATA"/flowchart1-with-css-svg.svg | |
) | |
# This will overwrite any PNG files with the same name that have been created by run-tests.sh | |
# v0.5.0 is the last version to correctly convert our SVG files to PNG | |
npx --yes [email protected] "${svg_files_to_convert[@]}" | |
- name: Upload diagrams for manual inspection | |
# also uploads for `upload-percy.yml` action | |
uses: actions/[email protected] | |
with: | |
name: output | |
path: ./${{env.INPUT_DATA}} | |
- name: Upload diagrams to percy for automatic inspection | |
# only run on push | |
# For PRs, the ./upload-percy.yml file is used instead | |
if: github.event_name == 'push' | |
# copied from https://docs.percy.io/docs/github-actions | |
# should automatically upload `.png` | |
run: npx @percy/cli upload "$INPUT_DATA" | |
env: | |
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} | |
- name: Login to GitHub Container Registry | |
if: github.ref == 'refs/heads/master' | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Login to DockerHub | |
if: github.ref == 'refs/heads/master' | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and Push Image(s) | |
if: github.ref == 'refs/heads/master' | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: ${{env.DOCKERFILE}} | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
${{env.DOCKER_IO_REPOSITORY}}:latest | |
${{env.DOCKER_IO_REPOSITORY}}:${{env.RELEASE_VERSION}} | |
ghcr.io/${{env.GITHUB_REPOSITORY_LOWER_CASE}}/${{env.IMAGENAME}}:latest | |
ghcr.io/${{env.GITHUB_REPOSITORY_LOWER_CASE}}/${{env.IMAGENAME}}:${{env.RELEASE_VERSION}} |