diff options
| author | stonedDiscord <Tukz@gmx.de> | 2022-03-07 18:21:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-07 18:21:57 +0100 |
| commit | 9c5fd198c11a0e2b976c6a2802eff9c4fef836f6 (patch) | |
| tree | f6396236461c1e60a943a57f2d8227b9c2b639bf /.github/workflows/test.yml | |
| parent | ccbca8b9cede972480dd1ef7a73db71a99be9609 (diff) | |
| parent | c665571c930d877316940eae53e7e79640411aae (diff) | |
Merge pull request #96 from caleb-mabry/move-iniparser
Move INI parser
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 |
