Skip to content

bom-check

Actions
Check for BOM in specified path
v1.1
Latest
Star (1)

bom-check actions

This action checks for BOM in specified path by running grep -rlI $'\xEF\xBB\xBF' $1. If there is BOM in any of the files in the path the action fails. Only non-binary files are checked.

By default the actions checks root of the repository (.). To change the path edit jobs.<job>.steps.with.path

Example workflow

# main.yml
name: CI

on:
  push:
    branches:
      - master
  pull_request: ~

jobs:
  test-bom-check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master

      - uses: arma-actions/bom-check@v1
        name: Check for BOM
        # with:
          # path: 'addons'

bom-check is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Check for BOM in specified path
v1.1
Latest

bom-check is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.