Skip to content

Commit

Permalink
update workflows file
Browse files Browse the repository at this point in the history
  • Loading branch information
colevandersWands committed Feb 10, 2025
1 parent b6eaea0 commit 9fc1711
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 22 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/code-quality-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Code Quality Checks

on: [push, pull_request, workflow_dispatch]

jobs:
format_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm run format:check

spell_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm run spell-check

lint_ls:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm run lint:ls

lint_md:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm run lint:md

lint_css:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm run lint:css

validate_html:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm run validate:html
22 changes: 0 additions & 22 deletions .github/workflows/lint-and-validate.yml

This file was deleted.

0 comments on commit 9fc1711

Please sign in to comment.