diff options
Diffstat (limited to 'vnext/.github/workflows')
-rw-r--r-- | vnext/.github/workflows/npm-publish.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vnext/.github/workflows/npm-publish.yml b/vnext/.github/workflows/npm-publish.yml new file mode 100644 index 00000000..11562d60 --- /dev/null +++ b/vnext/.github/workflows/npm-publish.yml @@ -0,0 +1,11 @@ +name: Node + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: npm ci + - run: npm test |