Fill in remaining styling for answer screen #55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Full build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install Go | |
uses: actions/[email protected] | |
with: | |
go-version: 1.18 | |
- name: install Node | |
uses: actions/[email protected] | |
- name: dependencies | |
run: make frontend/node_modules | |
- name: build | |
run: make |