Skip to content

[Issue #30] Set up CI/CD for CLI #1

[Issue #30] Set up CI/CD for CLI

[Issue #30] Set up CI/CD for CLI #1

Workflow file for this run

name: CI - Publish @common-grants/cli (dry run)
on:
pull_request:
branches:
- main
paths:
- "cli/**" # Trigger only if files in the `cli/` directory are changed
- ".github/workflows/ci-cli-npm.yml"
defaults:
run:
working-directory: ./cli
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- name: Dry run publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish --tag alpha --access public --dry-run