Skip to content

Commit

Permalink
Merge branch 'main' into proton-pass
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaFocusDev authored Dec 13, 2024
2 parents 4c2edb8 + 186a740 commit 13efe7b
Show file tree
Hide file tree
Showing 57 changed files with 1,806 additions and 1,395 deletions.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Basic set up

version: 2
updates:

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for Submodule (in case you need it in the future.)
- package-ecosystem: "gitsubmodule"
directory: "/"
schedule:
interval: "daily"
37 changes: 37 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Lint

on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:

jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Run Super-Linter with detailed output
uses: super-linter/super-linter/slim@latest
env:
LINTER_RULES_PATH: /
MARKDOWN_CONFIG_FILE: .markdown-lint.yml
VALIDATE_ALL_CODEBASE: false
VALIDATE_MARKDOWN: true
FIX_MARKDOWN: true
VALIDATE_HTML: true
VALIDATE_CSS: true
FIX_CSS: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DISPLAY_ERRORS: true
Loading

0 comments on commit 13efe7b

Please sign in to comment.