Skip to content

Merge pull request #300 from TobiTRy/litte-updates #35

Merge pull request #300 from TobiTRy/litte-updates

Merge pull request #300 from TobiTRy/litte-updates #35

Workflow file for this run

name: Publish to NPM
on:
push:
branches: [develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies and build 🔧
run: npm i && npm run build
- name: Publish package on NPM 📦
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}