Skip to content

Improve remove method in BitFileUpload (#6003) #2598

Improve remove method in BitFileUpload (#6003)

Improve remove method in BitFileUpload (#6003) #2598

Workflow file for this run

name: bit platform CI
on:
workflow_dispatch:
pull_request:
paths:
- 'src/**'
jobs:
build-release:
if: startsWith(github.event.pull_request.title, 'Prerelease') || startsWith(github.event.pull_request.title, 'Release') || startsWith(github.event.pull_request.title, 'Version')
name: build and test for release
runs-on: ubuntu-22.04
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
global-json-file: src/global.json
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install wasm and maui
run: cd src && dotnet workload install maui-android wasm-tools wasm-experimental
- name: MSBuild prerelease
run: dotnet build src/Bit-CI-release.sln
- name: Test
run: dotnet test --no-build --verbosity normal src/BlazorUI/Bit.BlazorUI.Tests/Bit.BlazorUI.Tests.csproj
build:
if: startsWith(github.event.pull_request.title, 'Prerelease') != true && startsWith(github.event.pull_request.title, 'Release') != true && startsWith(github.event.pull_request.title, 'Version') != true
name: build and test
runs-on: ubuntu-22.04
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
global-json-file: src/global.json
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install wasm and maui
run: cd src && dotnet workload install maui-android wasm-tools wasm-experimental
- name: Build
run: dotnet build src/Bit-CI.sln -p:WarningLevel=0 -p:RunCodeAnalysis=false
- name: Test
run: dotnet test --no-build --verbosity normal src/BlazorUI/Bit.BlazorUI.Tests/Bit.BlazorUI.Tests.csproj