Skip to content

Update & extend documentation #1

Update & extend documentation

Update & extend documentation #1

Workflow file for this run

name: "Checks"
on:
push:
branches:
- main
- development
- "feature/*"
- "issue/*"
pull_request:
strategy:

Check failure on line 12 in .github/workflows/checks.yml

View workflow run for this annotation

GitHub Actions / Checks

Invalid workflow file

The workflow is not valid. .github/workflows/checks.yml (Line: 12, Col: 1): Unexpected value 'strategy'
matrix:
node-version:
- 20.x
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: make test