Skip to content

Commit

Permalink
Fix UTF8 Unicode text (with BOM)
Browse files Browse the repository at this point in the history
  • Loading branch information
grisov committed Mar 9, 2024
1 parent 357a06e commit d515245
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/check-for-extended-ascii-and-utf-bom.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Check that we dont have extended ascii or utf boms in our files

on: [pull_request]
on:
pull_request:
branches:
- main

jobs:
extendedAsciiAndBom:
Expand All @@ -12,7 +15,7 @@ jobs:
run: find . -type f | grep -vP "^./.git" | xargs file | grep -iP "bom|extended|iso"
- name:
if: failure()
uses: unsplash/comment-on-pr@main
uses: unsplash/comment-on-pr@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@charset "utf-8";
@charset "utf-8";
body {
font-family : Verdana, Arial, Helvetica, Sans-serif;
line-height: 1.2em;
Expand Down

0 comments on commit d515245

Please sign in to comment.