aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorcaleb.mabry.15@cnu.edu <caleb.mabry.15@cnu.edu>2022-03-07 10:41:41 -0500
committercaleb.mabry.15@cnu.edu <caleb.mabry.15@cnu.edu>2022-03-07 10:41:41 -0500
commit0dafeb6d7264e03dce72f91ffa1ce9f930133f8c (patch)
treec4044d2aa93f603e3d0148d4edbe2e3c96d47bb5 /.github
parent6b8a8c8888aa6bb8eb29bd62c20fb48b9107eb3e (diff)
Updating github action
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/nodejs.yml13
1 files changed, 6 insertions, 7 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml
index b37178b..e652197 100644
--- a/.github/workflows/nodejs.yml
+++ b/.github/workflows/nodejs.yml
@@ -12,13 +12,12 @@ jobs:
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
- - name: npm install, build, and test
- run: |
- git submodule init
- git submodule update
- npm install
- npm ci
- npm run build
+ - name: Install Dependencies
+ run: npm install
+ - name: Test
+ run: npm run test
+ - name: Build
+ run: npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.0.0
with: