Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 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
22 changes: 22 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -256,3 +256,25 @@ jobs:
uses: codespell-project/codespell-problem-matcher@v1
- name: codespell
run: ./scripts/spelling.sh codespell
weblint:
name: weblint
runs-on: ubuntu-latest
container: debian:stable
steps:
- name: Update package database
run: apt-get update -y
- name: Install Git
run: apt-get -y install git
Comment thread
FloEdelmann marked this conversation as resolved.
Outdated
- uses: actions/checkout@v3
- name: Setup Node.js v18
uses: actions/setup-node@v3
with:
node-version: 18 # LTS
cache: 'npm'
Comment thread
DaAwesomeP marked this conversation as resolved.
cache-dependency-path: './javascript/new-src/package-lock.json'
- name: Install Node.js lint tools and dependencies
Comment thread
FloEdelmann marked this conversation as resolved.
Outdated
run: npm ci
working-directory: ./javascript/new-src
- name: Run weblint
run: npm test
working-directory: ./javascript/new-src
Loading