Skip to content

New products filter (#74) #305

New products filter (#74)

New products filter (#74) #305

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: Run unit tests
run: dotnet test tests/FoodDiary.UnitTests --no-restore --verbosity normal
- name: Run integration tests
run: dotnet test tests/FoodDiary.IntegrationTests --no-restore --verbosity normal
- name: Run component tests
run: dotnet test tests/FoodDiary.ComponentTests --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