Skip to content

chore(deps): bump next from 14.1.0 to 14.2.10 in /frontend #3799

chore(deps): bump next from 14.1.0 to 14.2.10 in /frontend

chore(deps): bump next from 14.1.0 to 14.2.10 in /frontend #3799

Workflow file for this run

name: Backend Build and Test
on:
pull_request:
push:
branches: [master]
# paths:
# - "server/**" # Only run if only a backend code has changed
jobs:
backend-build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-go@v4
with:
go-version: 1.18
- name: build binary
working-directory: ./server
run: make build
backend-test:
needs: backend-build
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-go@v4
with:
go-version: 1.18
- name: run unit tests
working-directory: ./server
run: |
make test