Skip to content

Commit fae6b29

Browse files
authored
Initial Commit
Testing disabled due to giving errors vs upstream code repo
1 parent c0f6bdd commit fae6b29

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: npm pull request testing
2+
3+
on: [pull_request, push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- name: Setup NPM
11+
uses: actions/setup-node@master
12+
- name: Install NPM Modules
13+
run: npm install
14+
#- name: Unit Testing
15+
# run: npm run test:unit
16+
#- name: End-to-End Testing
17+
# run: npm run test:e2e
18+
- name: Build Codebase
19+
run: npm run build

0 commit comments

Comments
 (0)