Skip to content

feat(config): eslint length 150 #40

feat(config): eslint length 150

feat(config): eslint length 150 #40

Workflow file for this run

name: CI
on:
push:
branches:
- master
- '*.x'
# - feature/* # todo: comment
paths-ignore:
- '**.md'
pull_request:
branches:
- master
- '*.x'
paths-ignore:
- '**.md'
workflow_dispatch:
inputs:
publish:
description: 'Publish 🚀'
required: false
type: boolean
default: false
force-prerelease:
description: 'Force Pre-release'
required: false
type: boolean
default: true
jobs:
package:
name: Package
uses: sketch7/.github/.github/workflows/node-lib.yml@master
with:
node-version: '18'
publishable: ${{ contains(fromJSON('["develop", "master", "workflow"]'), github.ref_name) || endsWith(github.ref_name, '.x') || github.event.inputs.publish == 'true' }}
preid-branches: "develop" # when using 1.x, 2.x for release comment this
force-preid: ${{ github.event.inputs.force-prerelease == 'true' }}
secrets:
npm-auth-token: ${{ secrets.NPM_KEY }}