mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-10-07 22:57:07 +00:00
Add Github CI action to run tests
This commit is contained in:
19
.github/workflows/run-test.yml
vendored
Normal file
19
.github/workflows/run-test.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
name: Run Tests
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: 'lts/*'
|
||||
registry-url: https://registry.npmjs.org/
|
||||
- run: npm ci
|
||||
- run: npm test
|
||||
Reference in New Issue
Block a user