diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 391b524..386b734 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,16 +15,14 @@ jobs: uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - # registry-url: 'https://registry.npmjs.org' - - name: Echo npm version - run: npm --version -# - name: Install dependencies -# run: npm ci -# - name: Running eslint -# run: npm run lint -# - name: Build TypeScript -# run: npm run build -# - name: Publish -# run: npm publish -# env: -# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + registry-url: 'https://registry.npmjs.org' + - name: Installing dependencies + run: npm ci + - name: Running ESlint + run: npm run lint + - name: Building TypeScript + run: npm run build + - name: Publishing + run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}