Skip to content

Bump react-markdown from 8.0.7 to 9.0.3 in /web #15

Bump react-markdown from 8.0.7 to 9.0.3 in /web

Bump react-markdown from 8.0.7 to 9.0.3 in /web #15

Workflow file for this run

name: Cache Clean
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Cache Go modules
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Remove Go Modules Cache
run: |
chmod -R u+w ~/go/pkg/mod || true
rm -rf ~/go/pkg/mod || true
- name: Install dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...