Skip to content

Merge pull request #445 from ERC725Alliance/develop #63

Merge pull request #445 from ERC725Alliance/develop

Merge pull request #445 from ERC725Alliance/develop #63

Workflow file for this run

name: Create GitHub release and publish to NPM
on:
push:
branches:
- 'main'
permissions:
contents: write
pull-requests: write
jobs:
release-please:
name: 📦 Create GitHub release and publish to NPM
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: ⚙️ Setup Node.js v16
uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
scope: '@erc725'
cache: 'npm'
- name: 🧰 Install
run: npm ci
- name: 💅 Lint
run: npm run lint
- name: 🎯 Test
run: npm test
- name: 🛠 Build
run: npm run build
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: node
package-name: '@erc725/erc725.js'
bump-minor-pre-major: true
default-branch: main
- name: 📦 Publish to NPM
if: steps.release.outputs.releases_created
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}