Skip to content

Bump eslint-plugin-storybook from 0.6.13 to 0.6.15 #29

Bump eslint-plugin-storybook from 0.6.13 to 0.6.15

Bump eslint-plugin-storybook from 0.6.13 to 0.6.15 #29

Workflow file for this run

name: Publish package to npm registry
on:
push:
tags:
- v**
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
build:

Check failure on line 14 in .github/workflows/npm.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/npm.yaml

Invalid workflow file

You have an error in your yaml syntax on line 14
- uses: actions/checkout@v3
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build:prod
- run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.ORG_NPM_TOKEN }}