Skip to content

feat: enable syntax highlighting for heex #669

feat: enable syntax highlighting for heex

feat: enable syntax highlighting for heex #669

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- '[0-9]+.x'
- '[0-9]+.[0-9]+.x'
jobs:
commitlint:
name: Commitlint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run commitlint
run: npx commitlint --from origin/main --to HEAD --verbose
superlinter:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint Code Base
uses: docker://ghcr.io/github/super-linter:slim-v4
env:
FILTER_REGEX_EXCLUDE: (CHANGELOG.md|.git-completion.bash|.git-prompt.sh)
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}