Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ on:
jobs:
publish:
name: Publish NPM Package
uses: WJSoftware/cicd/.github/workflows/npm-publish.yml@0.1.0
uses: WJSoftware/cicd/.github/workflows/npm-publish.yml@v0.1.0
secrets: inherit
with:
node-version: ${{ inputs.node-version }}
npm-tag: latest
dry-run: ${{ inputs.dry-run }}
npm_tag: latest
dry_run: ${{ inputs.dry-run }}
21 changes: 4 additions & 17 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,15 @@
name: Test Pull Request

on:
pull_request:
branches:
- **
workflow_dispatch:
inputs:
node-version:
description: Node.js version to use.
required: false
type: choice
options:
- '18'
- '20'
- '22'
- '24'
default: '24'
pull_request:
branches:
- '**'

jobs:
test:
name: Unit Testing
uses: WJSoftware/cicd/.github/workflows/npm-test.yml@0.1.0
uses: WJSoftware/cicd/.github/workflows/npm-test.yml@v0.1.0
secrets: inherit
with:
pwsh: false
build: false
node-version: ${{ inputs.node-version }}