mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-11 14:51:49 +00:00
feat: tests to run on GitHub Actions (#2576)
This commit is contained in:
parent
5b77f7d023
commit
5a90b321b0
15
.github/workflows/tests.yml
vendored
Normal file
15
.github/workflows/tests.yml
vendored
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user