Skip to content

⬆️ Bump @types/react from 18.3.3 to 18.3.4 in /web/components/code-editor #7

⬆️ Bump @types/react from 18.3.3 to 18.3.4 in /web/components/code-editor

⬆️ Bump @types/react from 18.3.3 to 18.3.4 in /web/components/code-editor #7

Workflow file for this run

---
name: build
on:
pull_request:
branches:
- main
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout@scm
uses: actions/checkout@v4
- name: setup@docker
uses: docker/setup-buildx-action@v3
- name: cache@docker
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: build@docker
uses: docker/build-push-action@v5
with:
context: .
file: ./docker/flowg.dockerfile
tags: " linksociety/flowg:latest"
push: false
load: true
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache