Skip to content

Bump express from 4.18.2 to 4.19.2 in /web #136

Bump express from 4.18.2 to 4.19.2 in /web

Bump express from 4.18.2 to 4.19.2 in /web #136

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Build go app
run: make all
- name: Build web app
run: |
cd web
npm install
NODE_OPTIONS=--openssl-legacy-provider npm run build
# - name: Test
# run: go test -v ./...