Compare commits

...

3 commits

Author SHA1 Message Date
ed15488b60 2023.02.05 2023-02-05 13:33:16 +01:00
557786d2bb 2023.02.03-2 2023-02-05 13:30:54 +01:00
3dc6fbb535 . 2023-02-05 13:06:01 +01:00
3 changed files with 11 additions and 3 deletions

View file

@ -4,7 +4,7 @@ on:
types: [created]
jobs:
Publish-NPM:
runs-on: ubuntu-latest
runs-on: node1
steps:
- name: Checkout
uses: actions/checkout@v2
@ -14,6 +14,10 @@ jobs:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
scope: '@thundernetworkrad'
- name: Install Dependencies
run: npm i
- name: Build
run: npm run build
- name: Publish package on NPM 📦
run: npm publish --access public
env:

4
.gitignore vendored
View file

@ -103,3 +103,7 @@ dist
# TernJS port file
.tern-port
# build
build

View file

@ -1,11 +1,11 @@
{
"name": "node-cin",
"version": "2023.02.03-1",
"version": "2023.02.05",
"description": "Standard input module for JavaScript / TypeScript",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"install": "tsc"
"build": "tsc"
},
"repository": {
"type": "git",