Skip to content

Merge pull request #5 from apvarun/fix-purge-path-cli #8

Merge pull request #5 from apvarun/fix-purge-path-cli

Merge pull request #5 from apvarun/fix-purge-path-cli #8

Workflow file for this run

name: Node.js Package
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
# Defaults to the user or organization that owns the workflow file
scope: ''
- run: yarn
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}