diff options
author | vitalyster | 2020-11-03 10:26:30 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:55 +0300 |
commit | b0b4b3e6e8186622ad51d29d9b903eda3e41e53c (patch) | |
tree | f7c406502018e58c244a046c1ad38928d65aa43b | |
parent | c9400718b0816e14a601fe9dcf91637ee402c4b6 (diff) |
Create npm-publish.yml
-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 |