Skip to content

Build Only Node.js/Python Package #3

Build Only Node.js/Python Package

Build Only Node.js/Python Package #3

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Build Only Node.js/Python Package
on:
workflow_dispatch:
pull_request:
types: [ review_requested ]
jobs:
checkout:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
build-npm-package:
needs: checkout
if: steps.update-version.outcome == 'success' || always()

Check failure on line 18 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build Only Node.js/Python Package

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 18, Col: 9): Unrecognized named-value: 'steps'. Located at position 1 within expression: steps.update-version.outcome == 'success' || always()
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
build-python-package:
needs: checkout
runs-on: ubuntu-latest
steps:
- name: build release distributions
run: |
pip install setuptools
python setup.py sdist