Skip to content

Commit

Permalink
feat: tests to run on GitHub Actions (nvm-sh#2576)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaileshKumar007 committed Sep 2, 2021
1 parent 5b77f7d commit 5a90b32
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Tests
on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
-uses: actions/checkout@v2
-uses: action/setup-node@v2
with:
nod-version: 14
-name: install deps
run: npm ci
-name: run tests
run: npm test

0 comments on commit 5a90b32

Please sign in to comment.