Skip to content

chore(vscode): add signalr setting #10

chore(vscode): add signalr setting

chore(vscode): add signalr setting #10

Workflow file for this run

name: CI
on:
push:
branches:
- master
- '*.x'
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' }}
force-preid: ${{ github.event.inputs.force-prerelease == 'true' }}
secrets:
npm-auth-token: ${{ secrets.NPM_KEY }}