Skip to content

Commit

Permalink
align
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusStorhaug committed Mar 28, 2024
1 parent dddfd5a commit 2ad1e6c
Show file tree
Hide file tree
Showing 7 changed files with 74 additions and 91 deletions.
25 changes: 25 additions & 0 deletions .github/linters/.markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
###########################
## Markdown Linter rules ##
###########################

# Linter rules doc:
# - https://github.com/DavidAnson/markdownlint

###############
# Rules by id #
###############
MD004: false # Unordered list style
MD007:
indent: 2 # Unordered list indentation
MD013:
line_length: 808 # Line length
MD026:
punctuation: ".,;:!。,;:" # List of not allowed
MD029: false # Ordered list item prefix
MD033: false # Allow inline HTML
MD036: false # Emphasis used instead of a heading

#################
# Rules by tags #
#################
blank_lines: false # Error on blank lines
29 changes: 29 additions & 0 deletions .github/workflows/Linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Linter

run-name: "Linter - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"

on: [pull_request]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read
packages: read
statuses: write

jobs:
Lint:
name: Lint code base
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Lint code base
uses: super-linter/super-linter@latest
env:
GITHUB_TOKEN: ${{ github.token }}
4 changes: 3 additions & 1 deletion .github/workflows/Process-PSModule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ on:
- labeled

concurrency:
group: ${{ github.workflow }}
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: write
pull-requests: write
statuses: write

jobs:
Process-PSModule:
Expand Down
6 changes: 0 additions & 6 deletions .vscode/extensions.json

This file was deleted.

81 changes: 0 additions & 81 deletions .vscode/settings.json

This file was deleted.

9 changes: 8 additions & 1 deletion tests/Get-NerdFont.Tests.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
Describe 'Get-NerdFont' {
[CmdletBinding()]
Param(
# Path to the module to test.
[Parameter()]
[string] $Path
)

Describe 'Get-NerdFont' {
It 'Function exists' {
Get-Command Get-NerdFont | Should -Not -BeNullOrEmpty
}
Expand Down
11 changes: 9 additions & 2 deletions tests/NerdFonts.Tests.ps1
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
Describe 'NerdFonts' {
[CmdletBinding()]
Param(
# Path to the module to test.
[Parameter()]
[string] $Path
)

Describe 'NerdFonts' {
Context 'Module' {
It 'The module should be available' {
Get-Module -Name 'NerdFonts' -ListAvailable | Should -Not -BeNullOrEmpty
Write-Verbose (Get-Module -Name 'NerdFonts' -ListAvailable | Out-String) -Verbose
}
It 'The module should be imported' {
{ Import-Module -Name 'NerdFonts' } | Should -Not -Throw
{ Import-Module -Name 'NerdFonts' -Verbose -RequiredVersion 999.0.0 -Force } | Should -Not -Throw
}
}
}

0 comments on commit 2ad1e6c

Please sign in to comment.