Skip to content

Commit

Permalink
Merge branch '0.10' into DaAwesomeP-GitHubActionsRemovePython2
Browse files Browse the repository at this point in the history
  • Loading branch information
peternewman committed Jun 21, 2023
2 parents 067ec3d + 43e7654 commit 4520224
Show file tree
Hide file tree
Showing 3 changed files with 3,231 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -256,3 +256,20 @@ jobs:
uses: codespell-project/codespell-problem-matcher@v1
- name: codespell
run: ./scripts/spelling.sh codespell
weblint:
name: weblint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js v18
uses: actions/setup-node@v3
with:
node-version: 18 # LTS
cache: 'npm'
cache-dependency-path: './javascript/new-src/package-lock.json'
- name: Install npm dependencies
run: npm ci
working-directory: ./javascript/new-src
- name: Run weblint
run: npm test
working-directory: ./javascript/new-src
Loading

0 comments on commit 4520224

Please sign in to comment.