Skip to content

[WIP] Trying to setup Matomo #1087

[WIP] Trying to setup Matomo

[WIP] Trying to setup Matomo #1087

Workflow file for this run

name: Build
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
jobs:
build:
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 build
run: npm run build