Selector/.github/workflows/ci.yml

50 lines
1.1 KiB
YAML
Raw Normal View History

name: ci
2021-09-24 23:35:26 +01:00
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
2021-09-24 23:35:26 +01:00
matrix:
dotnet-version: [ '5.0.x' ]
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v1.7.2
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install Dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
2021-10-20 20:35:15 +01:00
# build-Js:
2021-10-20 20:35:15 +01:00
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# node: [16]
2021-10-20 20:35:15 +01:00
# steps:
# - uses: actions/checkout@v2
2021-10-20 20:35:15 +01:00
# - name: Install Node ${{ matrix.node }}
# uses: actions/setup-node@v2
# with:
# node-version: ${{ matrix.node }}
2021-10-20 20:35:15 +01:00
# - name: Install Node Packages
# working-directory: ./Selector.Web
# run: npm ci
2021-10-20 20:35:15 +01:00
# - name: Compile Front-end
# working-directory: ./Selector.Web
# run: npm run build --if-present