A simple Node.js utility for testing OIDC trusted publishers with GitHub Actions and npm.
- Simple greeting functionality
- Environment information utilities
- ES modules support
- Basic test suite
npm install @lbplayground/github-hello-world-oidc-test# Default greeting
npx @lbplayground/github-hello-world-oidc-test
# Custom greeting
npx @lbplayground/github-hello-world-oidc-test "npm team"import { createGreeting, formatMessage, getEnvironmentInfo } from '@lbplayground/github-hello-world-oidc-test/lib/greetings.js';
const greeting = createGreeting('World');
const formatted = formatMessage(greeting);
console.log(formatted);
const envInfo = getEnvironmentInfo();
console.log(envInfo);# Run tests
npm test
# Run the application
npm startThis package is specifically designed for testing OIDC trusted publishers with:
- GitHub Actions workflows
- npm package publishing
- Trusted publisher authentication
MIT