Skip to content

Try to passs data from javascript to c# #718

Try to passs data from javascript to c#

Try to passs data from javascript to c# #718

Workflow file for this run

# -v | --verbosity <LEVEL> # Allowed values are q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic]. The default is minimal.
name: CI
defaults:
run:
shell: bash
permissions:
contents: read
on:
pull_request:
push:
branches-ignore:
- 'feat/*'
workflow_dispatch:
jobs:
build-and-test:
name: Build and test
runs-on: [ ubuntu-latest ]
steps:
- uses: actions/checkout@main
- name: Setup dotnet
uses: actions/setup-dotnet@main
with:
dotnet-version: 8
- name: Build
run: dotnet build Seedysoft.Tests.sln -c Release -v n
- name: Test
env:
SEEDY_MASTER_KEY: ${{ secrets.SEEDY_MASTER_KEY }}
run: dotnet test Seedysoft.Tests.sln -c Release --no-build -v n