Skip to content

Commit 0150378

Browse files
authored
feat(build): Added gated-build
1 parent 97eba2e commit 0150378

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/gated-build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
branches: [ main ]
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

Comments
 (0)