Skip to content

build(deps): bump axios from 1.1.3 to 1.6.0 in /src/adminserver/ui #124

build(deps): bump axios from 1.1.3 to 1.6.0 in /src/adminserver/ui

build(deps): bump axios from 1.1.3 to 1.6.0 in /src/adminserver/ui #124

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: go.work
cache: true
cache-dependency-path: go.work.sum
- name: Set up NodeJS
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
cache-dependency-path: src/adminserver/ui
- name: Build Frontend
run: cd src/adminserver/ui && yarn && yarn run build
- name: Build AdminServer
run: go build -v ./src/adminserver
- name: Build ApiServer
run: go build -v ./src/adminserver
- name: Build MetaServer
run: go build -v ./src/metaserver
- name: Build ObjectServer
run: go build -v ./src/objectserver