Skip to content

[backend]: Bump socket.io from 4.7.5 to 4.8.0 in /smo-backend #217

[backend]: Bump socket.io from 4.7.5 to 4.8.0 in /smo-backend

[backend]: Bump socket.io from 4.7.5 to 4.8.0 in /smo-backend #217

Workflow file for this run

name: Test Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-frontend:
name: Build frontend
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build
uses: docker/build-push-action@v5
with:
context: ./smo-frontend
push: false
cache-from: type=gha,scope=frontend
cache-to: type=gha,mode=max,scope=frontend
build-backend:
name: Build backend
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build
uses: docker/build-push-action@v5
with:
context: ./smo-backend
push: false
cache-from: type=gha,scope=backend
cache-to: type=gha,mode=max,scope=backend