Skip to content

Commit

Permalink
Merge pull request #116 from Niurmiguel/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
Niurmiguel authored Jul 2, 2023
2 parents cd50a05 + eb00c95 commit 20ba746
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 95 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,16 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
node-version: "16.x"
registry-url: "https://registry.npmjs.org"
- run: |
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
92 changes: 0 additions & 92 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 20ba746

Please sign in to comment.