Skip to content

Move the Nunjucks views config to the init function #31

Move the Nunjucks views config to the init function

Move the Nunjucks views config to the init function #31

Workflow file for this run

name: Tests
on: pull_request
jobs:
tests:
name: Javascript tests
runs-on: ubuntu-latest
strategy:
matrix:
node: ['20', '22']
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run javascript tests
run: npm run test:ci