forked from simpleangularcontrols/simpleangularcontrols
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 1.21 KB
/
run-cypress.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Run Cypress Tests
on:
pull_request:
branches: ["angular/*"]
jobs:
test:
runs-on: ubuntu-20.04
env:
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: 1
steps:
- name: Get Source
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 3.1.x
- name: Test
run: dotnet run --project build/Build.csproj --target=test
- name: Summary
run: |
echo "# Bootstrap 3 Summary" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
cat ch.jnetwork.sac-controls/reports/bs3.md >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "# Bootstrap 4 Summary" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
cat ch.jnetwork.sac-controls/reports/bs4.md >> $GITHUB_STEP_SUMMARY
echo "# Bootstrap 5 Summary" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
cat ch.jnetwork.sac-controls/reports/bs5.md >> $GITHUB_STEP_SUMMARY