Skip to content

changed TOC (capital letters in links prevented it from working corre… #15

changed TOC (capital letters in links prevented it from working corre…

changed TOC (capital letters in links prevented it from working corre… #15

Workflow file for this run

name: Test CI
on:
pull_request:
branches:
- master
jobs:
testing:
name: Testing code phase
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name : Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm ci
- name: Build mod
run: npm run build-mod
- name: Tests
run: npm run test-translation && npm run test-unit && npm run test-integration