Skip to content

Merge branch 'main' of https://github.com/pkirilin/food-diary into un… #213

Merge branch 'main' of https://github.com/pkirilin/food-diary into un…

Merge branch 'main' of https://github.com/pkirilin/food-diary into un… #213

Workflow file for this run

name: Build and Test
on:
push:
jobs:
backend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: 'src/backend'
steps:
- uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.302
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: 'src/frontend'
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.16.0'
- name: Install
run: yarn install
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test