Skip to content

Bump cross-spawn in /webapp in the npm_and_yarn group across 1 direct… #128

Bump cross-spawn in /webapp in the npm_and_yarn group across 1 direct…

Bump cross-spawn in /webapp in the npm_and_yarn group across 1 direct… #128

Workflow file for this run

name: Go test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go 1.21.x
uses: actions/setup-go@v5
with:
go-version: '1.21.x'
- name: Install dependencies
run: |
go get ./...
- name: Go generate
run: |
go generate ./...
touch cmd/rest-server/static/placeholder # we're not building frontend, so we put a placeholder
- name: Test
run: make test