We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cea996a commit 3f70b5cCopy full SHA for 3f70b5c
.github/workflows/build.yml
@@ -0,0 +1,30 @@
1
+name: Build, Test, Pack
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v1
10
+ - name: Setup .NET Core
11
+ uses: actions/setup-dotnet@v1
12
+ with:
13
+ dotnet-version: 2.2.301
14
+ - name: Setup Node.js
15
+ uses: actions/setup-node@v1.1.0
16
+ - name: Build
17
+ env:
18
+ DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
19
+ DOTNET_CLI_TELEMETRY_OPTOUT: 1
20
+ run: ./build.sh -r
21
+ - name: Test
22
23
24
25
+ run: ./test.sh -r
26
+ - name: Pack
27
28
29
30
+ run: ./pack.sh -r
0 commit comments