Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Workflow to Publish to npm if Package Version is Changed #7

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
86 changes: 86 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
name: Publish Packages

on:
push:
branches:
- main

jobs:
check_version_change:
name: Check Version Changes
runs-on: ubuntu-latest
outputs:
CHANGED: ${{steps.check_version.outputs.changed}}
PACKAGE_PATH: ${{steps.set_path.outputs.changed_path}}
steps:
- name: Checkout Code
id: checkout_code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0

- name: Set Path
id: set_path
run: |
# Get the paths of changed files
changes_paths=$(git diff-tree --no-commit-id --name-only -r "${{ github.sha }}" | awk -F'/' '{print $1"/"$2}')

# Manifest names list
manifest_names=("package.json")

# Save the manifest path of the changed package in GitHub env and exit without error
for path in ${changes_paths}; do
if [[ $path == packages/* ]]; then
for manifest in "${manifest_names[@]}"; do
if [[ -f $path/$manifest ]]; then
echo "changed_path=${path}" >> "$GITHUB_OUTPUT"
echo "changed_manifest_path=${path}/${manifest}" >> "$GITHUB_OUTPUT"
echo "package_changed=true" >> "$GITHUB_OUTPUT"
exit 0
fi
done
fi
done

# If we haven't exited yet, no package was changed
echo "No package was changed in this commit!"
echo "package_changed=false" >> "$GITHUB_OUTPUT"

- name: Check Version
id: check_version
if: ${{ steps.set_path.outputs.package_changed == 'true' }}
uses: EndBug/version-check@53c9309fefac91a21f852d5ca69f33878280d2f5 # v2.1.3
with:
file-name: ${{ steps.set_path.outputs.changed_manifest_path }}

publish_to_npm:
name: Publish Changed Package
runs-on: ubuntu-latest
needs: check_version_change
if: ${{ needs.check_version_change.outputs.CHANGED == 'true' }}
steps:
- name: Checkout Code
id: checkout_code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1

- name: Setup Node
id: setup_node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 #v4.0.2
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org/'

- name: Test Package
id: test_package
run: |
cd ${{ needs.check_version_change.outputs.PACKAGE_PATH }}
npm ci
npm test

- name: Publish Package
id: publish_package
uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
with:
token: ${{ secrets.NODE_AUTH_TOKEN }}
package: ${{ needs.check_version_change.outputs.PACKAGE_PATH }}
access: public