Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 860 Bytes

BuildAndTestOrchardCoreSolution.md

File metadata and controls

23 lines (18 loc) · 860 Bytes

Build and Test Orchard Core solution

Meant to be used with Orchard Core solutions; this workflow checks out the code, installs dependencies, builds the solution, runs unit and UI tests (with Lombiq UI Testing Toolbox for Orchard Core), and publishes artifacts as well as a test report.

For an example of this, see below and the workflow of Lombiq's Open-Source Orchard Core Extensions.

name: Build and Test

# Runs for PRs opened for any branch, and pushes to the dev branch.
on:
  pull_request:
  push:
    branches:
      - dev

jobs:
  build-and-test:
    name: Build and Test
    uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@dev
    with:
      timeout-minutes: 60