Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 1003 Bytes

README.md

File metadata and controls

45 lines (32 loc) · 1003 Bytes

GitHub Action Check Node Build

Description

GitHub Action that determines if the code has changed without actually running a build.

Usage

jobs:
  build:
    steps:
      - name: Check build
        uses: open-turo/actions-gha/check-build@v1
        with:
          ## example value for github-token provided below
          github-token: ${{ secrets.GITHUB_TOKEN }}

Dist check

Runs npm run prepare and checks to see if there are uncommitted changes.

Inputs

parameter description required default
github-token GitHub token that can create/delete comments. e.g. 'secrets.GITHUB_TOKEN' true

Runs

This action is a composite action.