Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 23 additions & 3 deletions .github/workflows/sca.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#####################################
# This GHA performs SCA amongst following remits:
# 1. Code quality
# 2. Code coverage
# 3. Vulnerabilities
# 2. Vulnerabilities
# 3. Spell check
# 4. Licensing

name: Source Code Analysis
Expand Down Expand Up @@ -49,7 +49,27 @@ jobs:
with:
verbose: true

# 3. Licensing - SCA
# 3. Code quality - Spell check
spell:
name: Spelling 📚
needs: setup
environment:
name: ${{ needs.setup.outputs.environment }}
runs-on: ubuntu-latest

steps:
- name: Repository
uses: actions/checkout@v4

- name: Dependencies
working-directory: ./
run: npm ci --legacy-peer-deps

- name: Spell check
working-directory: ./
run: npm run spellcheck

# 4. Licensing - SCA
license:
name: Licensing ✏️
needs: setup
Expand Down
5 changes: 0 additions & 5 deletions .lintstagedrc.json

This file was deleted.

Loading