Skip to content

Improvement suggestion for CI/CD scripts #68

@yaruno

Description

@yaruno

To counter introducing regressions in future via pull requests I recommend to modify test running script nodejs.yml to include trigger that runs tests against pull requests when they are introduced.

https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request

Currently:

name: Node CI
  
on: [push]

jobs:
@@@rest of the script@@@

Suggestion:

name: Node CI
on:
  push:
  pull_request:

jobs:
@@@rest of the script@@@

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions