diff options
| author | caleb.mabry.15@cnu.edu <caleb.mabry.15@cnu.edu> | 2022-03-07 12:43:33 -0500 |
|---|---|---|
| committer | caleb.mabry.15@cnu.edu <caleb.mabry.15@cnu.edu> | 2022-03-07 12:43:33 -0500 |
| commit | 4bd674c196c0e06b460dffee440c5d2a48061bcc (patch) | |
| tree | 2338cf231c8535280c283d8d08d91f4fa4018912 /.github/workflows/test.yml | |
| parent | 01a7239f8b18710ce1871c502fd8d10a782efcaf (diff) | |
| parent | 9c5fd198c11a0e2b976c6a2802eff9c4fef836f6 (diff) | |
Merge branch 'master' of https://github.com/AttorneyOnline/webAO into refactor-constants
Diffstat (limited to '.github/workflows/test.yml')
| -rw-r--r-- | .github/workflows/test.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..d5f9f79 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,15 @@ +name: Test CI + +on: [pull_request] +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v1 + - name: Setup Node + uses: actions/setup-node@v1 + - name: Install Dependencies + run: npm install + - name: Run Tests + run: npm test
\ No newline at end of file |
