Skip to content

chore(deps-dev): Bump braces from 3.0.2 to 3.0.3 in /src/Chrono/ClientApp #93

chore(deps-dev): Bump braces from 3.0.2 to 3.0.3 in /src/Chrono/ClientApp

chore(deps-dev): Bump braces from 3.0.2 to 3.0.3 in /src/Chrono/ClientApp #93

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build (Frontend & Backend)
run: dotnet publish -c Release --no-restore
- name: Test
run: dotnet test --filter TestCategory!="E2E" --verbosity normal