chore(deps): bump eslint-config-next from 13.5.2 to 15.1.2 in /frontend #3814
Workflow file for this run
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: 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/checkout@v3.5.0 | |
- 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/checkout@v3.5.0 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.18 | |
- name: run unit tests | |
working-directory: ./server | |
run: | | |
make test |