Skip to content

File dropzone

File dropzone #28

name: build
on:
pull_request:
branches: [master]
env:
DOTNET_VERSION: '7.x' # The .NET SDK version to use
jobs:
build:
name: build-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 18.x
- name: Install npm packages
working-directory: ./SecureSend/ClientApp
run: npm install
- name: Prettier verify
working-directory: ./SecureSend/ClientApp
run: npm run prettier-verify
- name: Eslint verify
working-directory: ./SecureSend/ClientApp
run: npm run lint
- name: Build Vite project
working-directory: ./SecureSend/ClientApp
run: npm run build