chore(deps): update devdependencies minor and patch updates #1376
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: Main CI | |
on: | |
push: | |
branches: ['main', '2.*'] | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
if: github.event.head_commit.author.name != 'github-actions[bot]' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: yarn | |
- run: yarn format | |
- run: yarn lint | |
- run: yarn build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
check_if_version_upgraded: | |
name: Check if version upgrade | |
runs-on: ubuntu-latest | |
needs: build | |
outputs: | |
from_version: ${{ steps.check.outputs.from_version }} | |
to_version: ${{ steps.check.outputs.to_version }} | |
is_upgraded_version: ${{ steps.check.outputs.is_upgraded_version }} | |
is_release_beta: ${{ steps.check.outputs.is_pre_release }} | |
steps: | |
- uses: garronej/[email protected] | |
id: check | |
with: | |
action_name: is_package_json_version_upgraded | |
branch: ${{ github.head_ref || github.ref }} | |
docker: | |
needs: check_if_version_upgraded | |
if: | | |
needs.check_if_version_upgraded.outputs.is_upgraded_version == 'true' | |
&& ( | |
github.event_name == 'push' || | |
needs.check_if_version_upgraded.outputs.is_release_beta == 'true' | |
) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-qemu-action@v3 | |
- uses: docker/setup-buildx-action@v3 | |
- uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Computing Docker image tags | |
id: step1 | |
env: | |
IS_UPGRADED_VERSION: ${{ needs.check_if_version_upgraded.outputs.is_upgraded_version }} | |
TO_VERSION: ${{ needs.check_if_version_upgraded.outputs.to_version }} | |
run: | | |
OUT=$GITHUB_REPOSITORY:$TO_VERSION,$GITHUB_REPOSITORY:latest | |
OUT=$(echo "$OUT" | awk '{print tolower($0)}') | |
echo "docker_tags=$OUT" >> "$GITHUB_OUTPUT" | |
- uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
- uses: docker/build-push-action@v6 | |
with: | |
push: true | |
platforms: linux/amd64,linux/arm64 | |
context: . | |
tags: ${{ steps.step1.outputs.docker_tags }} | |
file: Dockerfile | |
release: | |
runs-on: ubuntu-latest | |
needs: check_if_version_upgraded | |
if: | | |
needs.check_if_version_upgraded.outputs.is_upgraded_version == 'true' && | |
( | |
github.event_name == 'push' || | |
needs.check_if_version_upgraded.outputs.is_release_beta == 'true' | |
) | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref }} | |
- uses: softprops/action-gh-release@v2 | |
with: | |
name: Release v${{ needs.check_if_version_upgraded.outputs.to_version }} | |
tag_name: v${{ needs.check_if_version_upgraded.outputs.to_version }} | |
target_commitish: ${{ github.head_ref || github.ref }} | |
generate_release_notes: true | |
draft: false | |
prerelease: ${{ needs.check_if_version_upgraded.outputs.is_release_beta == 'true' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |