You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
42 Norminette
v3.3.52
This GitHub Action checks if your code passes the 42School's norminette linter, after each push.
See a demo on alexandregv/norminette-action-demo.
/!\ This version (@v3
) is for Norm version 3, if you want Norm version 2 please use norminette-action@v2 /!\
Description: Flags passed to norminette.
Format: [options] <path>
Default: .
(all files)
# .github/workflows/main.yml
on: [push, pull_request]
jobs:
norminette_job:
runs-on: ubuntu-latest
name: norminette
steps:
- uses: actions/checkout@v2
- uses: alexandregv/norminette-action@v3
with:
flags: '.'
You can add a badge () to show current norminette status by adding this markdown code to your README.md:
![norminette](https://github.com/<OWNER>/<REPOSITORY>/workflows/<WORKFLOW_NAME_OR_FILE>/badge.svg)
More infos on GitHub Docs.
- norminette-action-demo - Demo repository for this action.
- norminette-docker - Docker image for norminette (used by this action).
- norminette-vim - Vim integration for norminette. Displays norm errors directly inside Vim.
All of these are compatible with Norm version 2 and 3.