• Stars
    star
    3
  • Rank 3,892,074 (Top 79 %)
  • Language
    Ruby
  • License
    MIT License
  • Created over 4 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A GitHub Action that lints your HAML code with HAML Lint!

Project Status: Inactive – The project has reached a stable, usable state but is no longer being actively developed; support/maintenance will be provided as time allows.

✅ HAML Lint Action

A GitHub Action to run HAML-Lint against your code and create annotations in the GitHub UI.

📄 Introduction

GitHub Actions are an amazing new tool that can dramatically improve productivity while using the GitHub platform. While it is not hard to write a custom GitHub action to run HAML-Lint on your codebase, this action takes that functionality one step further using the checks API. After the HAML Lint Action runs HAML-Lint against your code, it will create annotations that you can easily view, matched up with the offending code.

Since GitHub actions and the checks API are continually changing, it is possible that there will be breaking API changes that affect this action. If so, please open an issue and I will look into it as soon as I can.

💡 Usage

Add the following to your GitHub action workflow to use HAML Lint Action:

- name: HAML Lint
  uses: andrewmcodes/[email protected]
  with:
    file_paths: 'app/**/*.html.haml'
    fail_level: 'error'
  env:
    GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

It is highly recommend you tie yourself to a version and do not do the following. I promise your life will be much easier. 😇

# ❌ Danger, sometimes I break things!
uses: andrewmcodes/haml-lint-action@master

# ✅ Much better.
uses: andrewmcodes/[email protected]

đŸ“Ļ Example Workflow

Here is an example workflow file incorporating HAML Lint Action:

name: HAML Lint

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - name: HAML Lint
      uses: andrewmcodes/[email protected]
      with:
        file_paths: 'app/**/*.html.haml'
        fail_level: 'error'
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Go here to see more examples!

💰 Available Inputs

Refer to the official haml-lint documentation for more information on the haml-lint options.

Input Parm Name Required Default Value haml-lint option Description Example
bundle false false no If you want to use a version of a gem you maintain this is your best bet. NOTE: action run time will increase relative to the size of your Gemfile. true
file_paths false app/views/ yes Define the paths you wish to be linted per run. Multiple paths can be on one line by adding a space. 'app/**/*.html.haml'
version false latest release no Define a specific version of the haml-lint gem. '0.33.0'
additional_gems false no Additional Gems can be installed via one line with spaces and commands are supported like a version. 'rubocop-rails rubocop-performance'
config_path false yes By default, haml-lint will load any file with the name .haml-lint.yml as a configuration file. If you want to load a config file with a different name or path, specify the path. 'config/haml-lint.yml'
exclude_paths false yes Define a list of paths to exclude from being linted. 'app/views/home/*.html.haml'
fail_level false error yes Can define error or warning to cause haml-lint to error out on. 'warning'

⚠ī¸ Gotchas

  1. Due to the GitHub Check Runs API, we can only return 50 annotations per run. See here for more info.
  2. There is a bug with the Checks API that might cause your runs to get jumbled in the UI, but they will all still run and render annotations in the diff correctly.
  3. You can't use --version with multiple gems. You can specify multiple gems with version requirements using gem install 'my_gem:1.0.0' 'my_other_gem:~>2.0.0'

📸 Screenshots

HAML Lint Checks Overview

HAML Lint File Annotation

🔖 Changelog

View our Changelog

🆘 Contributing

Contributing Guide

🚨 Code of Conduct

Code of Conduct

Šī¸ License

MIT

🤖 Check Out My Other Ruby GitHub Actions

✨ Contributors

Thanks goes to these wonderful people (emoji key):

Andrew Mason
Andrew Mason

🚇 📖 đŸ’ģ
Christopher Pezza
Christopher Pezza

đŸ’ģ 📖 🚇 👀

This project follows the all-contributors specification. Contributions of any kind welcome!

More Repositories

1

obsidian-beginner-vault-template

A minimal template for your first Obsidian vault aimed at setting good defaults.
46
star
2

awesome-lucky

A collection of awesome Lucky libraries, tools, frameworks and resources
45
star
3

standardrb-action

StandardRB Action: A GitHub Action to run StandardRB against your code!
Ruby
32
star
4

shotgun

Ready to go Rails App with TailwindCSS, ViewComponent, Devise, and more!
Ruby
25
star
5

warp-one-dark-darker

Warp theme based on One Dark Darker
23
star
6

pruner

CLI tool to delete Git branches
Ruby
20
star
7

stimulus_reflex_table_filter

Demo app showing how you can filter a table in a Ruby on Rails app with StimulusReflex
Ruby
17
star
8

bundler-audit-action

Bundler Audit Action
Dockerfile
16
star
9

awesome-bridgetown

A curated list of awesome things related to Bridgetown
13
star
10

rails-extension-power-pack

An extension pack of my favorite VS Code extensions for Ruby on Rails development.
Ruby
11
star
11

forem_lite

A simple tool to help you get articles from Forem/Dev.to
Ruby
11
star
12

dishwasher

A CLI tool to help you easily delete forked repositories.
Ruby
10
star
13

andrewm.codes

My personal website built on Bridgetown
HTML
9
star
14

bridgetown-inline-svg

ARCHIVED migrated to bridgetown-svg-inliner
Ruby
9
star
15

bridgetown-netlify-cms-starter

A template to help you get started with Bridgetown + Netlify CMS
JavaScript
8
star
16

awesome-stars

An Awesome List of my Awesome Stars
7
star
17

bridgetown-gh-pages-action

ARCHIVED See link below, this action is now longer needed following the release of Bridgetown V1
Shell
7
star
18

andrewmcodes

andrewmcodes public readme
5
star
19

andrewmcodes_gem

My gem card
Ruby
4
star
20

bridgetown-torchlight-demo

A demo Bridgetown website that has Torchlight syntax highlighting configured!
JavaScript
3
star
21

alfred-themes

My personal Alfred 5 themes
3
star
22

redux-on-rails

I DIDNT WANT THIS BUT YOU MADE ME DO IT
Ruby
3
star
23

dotfiles

My personal dot and settings files
Shell
3
star
24

rails-cable-route-bug-reproduction

Ruby
2
star
25

release-please-demo

Ruby
2
star
26

turbo_debug

Ruby
2
star
27

.github

Default community health files for @andrewmcodes
2
star
28

vercel_ruby

WIP Vercel Serverless Functions written in Ruby
Ruby
2
star
29

.dotfiles-update

A temporary repo where I am rebuilding my dotfiles
Shell
2
star
30

actions

Shared GitHub Actions
Shell
1
star
31

prettier-config

My personal Prettier configuration
JavaScript
1
star
32

bridgetown-gh-pages-demo

Demo of the new gh-pages configuration in Bridgetown v1.0
JavaScript
1
star
33

github-actions

MOVED TO andrewmcodes/actions
1
star
34

advent_of_code

Solutions to Advent of Code
Ruby
1
star
35

vscode-tailwindcss-extension-pack

An extension pack for VSCode of extensions for developing with Tailwind CSS.
1
star
36

warp-radix

Warp theme based on the Radix color system
1
star
37

remote-ruby-vault

Obsidian vault of Remote Ruby episodes for personal research
JavaScript
1
star
38

bridgetown-esbuild-minifySyntax

Benchmarking usage of minifySyntax with esbuild and Bridgetown
JavaScript
1
star