Skip to content

Commit

Permalink
ci tweaks (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelquigley committed Nov 2, 2022
1 parent 614638b commit c928707
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,19 @@ jobs:
with:
go-version: 1.19.3

- name: Build
- name: setup-node
uses: actions/setup-node@v3
with:
node-version: 16.x

- run: npm install
working-directory: ui

- run: npm run build
working-directory: ui

- name: go build
run: go build -v ./...

- name: Test
- name: test
run: go test -v ./...

0 comments on commit c928707

Please sign in to comment.