chore: satisfy clippy #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NPM package publishing | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish_npm: | |
name: Publish ${{ matrix.package }} NPM package | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
package: [javy, javy-cli] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
registry-url: "https://registry.npmjs.org" | |
- name: Install package dependencies | |
run: npm install | |
working-directory: npm/${{ matrix.package }} | |
- name: Build NPM package | |
if: matrix.package == 'javy' | |
run: npm run build | |
working-directory: npm/${{ matrix.package }} | |
- name: Publish NPM package if new version | |
run: | | |
if [[ $(cat package.json | jq -r .version) == $(npm view ${{ matrix.package }} version) ]]; then | |
echo "Skipping publish because the version is already published" | |
else | |
npm publish | |
fi | |
working-directory: npm/${{ matrix.package }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |