Skip to content

Improvement suggestion for CI/CD scripts #68

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@@@

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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