Skip to content

testing gh action

testing gh action #8

name: Node.js Package
on:
push:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Necessary so we have commit history to compare to
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm test
- name: Check if version has been updated
id: check
uses: EndBug/version-check@v2
- name: Log when changed
if: steps.check.outputs.changed == 'true'
run: 'echo "Version change found in commit ${{ steps.check.outputs.commit }}! New version: ${{ steps.check.outputs.version }} (${{ steps.check.outputs.type }})"'
- name: Log when unchanged
if: steps.check.outputs.changed == 'false'
run: 'echo "No version change :/"'
release:
needs: build
if: steps.check.outputs.changed == 'true'

Check failure on line 32 in .github/workflows/release-package.yml

View workflow run for this annotation

GitHub Actions / Node.js Package

Invalid workflow file

The workflow is not valid. .github/workflows/release-package.yml (Line: 32, Col: 9): Unrecognized named-value: 'steps'. Located at position 1 within expression: steps.check.outputs.changed == 'true' .github/workflows/release-package.yml (Line: 51, Col: 9): Unrecognized named-value: 'steps'. Located at position 1 within expression: steps.check.outputs.changed == 'true'
name: Release pushed tag
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Create release
if: ${{ ! startsWith(github.ref, 'refs/tags/')}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
run: |
gh release create "$tag" \
--repo="$GITHUB_REPOSITORY" \
--title="${tag#v}" \
--generate-notes
publish-gpr:
needs: build
if: steps.check.outputs.changed == 'true'
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}