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 97eba2e commit 0150378Copy full SHA for 0150378
.github/workflows/gated-build.yml
@@ -0,0 +1,22 @@
1
+# This is a gated build to verify the validity of the code
2
+
3
+name: Gated-Build
4
+on:
5
+ push:
6
+ branches: [ main ]
7
+ pull_request:
8
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Install Dependencies
16
+ run: npm install
17
+ - name: Build
18
+ run: npm run build
19
+ - name: Test
20
+ run: npm run test
21
22
0 commit comments