Skip to content

[WIP] Trying to setup Matomo #1043

[WIP] Trying to setup Matomo

[WIP] Trying to setup Matomo #1043

Workflow file for this run

name: Lint
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Run npm clean-install
run: npm clean-install
- name: Run linting
run: npm run lint