fix: upgrade three from 0.125.1 to 0.160.0 #417
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-action | |
on: [push] | |
defaults: | |
run: | |
working-directory: ./modules/web-ui | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
# - name: Install npm dependencies | |
# run: npm install | |
# - name: Build & run | |
# run: docker build . | |
# - name: SonarCloud Scan | |
# uses: sonarsource/sonarcloud-github-action@master | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
# - name: Start Mosquitto | |
# uses: namoshek/mosquitto-github-action@v1 | |
# with: | |
# version: '1.6' | |
# ports: '1883:1883 9001:9001' | |
# certificates: ${{ github.workspace }}/modules/web-ui/.ci/tls-certificates | |
# config: ${{ github.workspace }}/modules/web-ui/.ci/mosquitto.conf | |
# container-name: 'mqtt' | |
# - name: Wait a bit until MQTT broker has started | |
# run: sleep 30 | |
# - name: Cypress Test | |
# run: npm run cytest | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GHCR_PAT }} | |
- name: Push Web UI container to GHCR | |
uses: docker/build-push-action@v3 | |
with: | |
context: ./modules/web-ui | |
platforms: linux/amd64,linux/arm | |
push: true | |
tags: ghcr.io/cmcrobotics/microsquad/web-ui:latest | |
- name: Push Gateway container to GHCR | |
uses: docker/build-push-action@v3 | |
with: | |
context: ./modules/gateway | |
platforms: linux/amd64,linux/arm | |
push: true | |
tags: ghcr.io/cmcrobotics/microsquad/gateway:latest | |