Skip to content

Bump @mui/material from 5.14.0 to 5.14.7 in /web #247

Bump @mui/material from 5.14.0 to 5.14.7 in /web

Bump @mui/material from 5.14.0 to 5.14.7 in /web #247

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: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18.16'
- name: "Install Parcel"
run: |
cd web
yarn add --dev parcel
- name: "Build Web with Parcel"
run: |
cd web
yarn parcel build src/index.html --public-url ./
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...