Skip to content

Workflow file for this run

# Dieser Workflow führt eine saubere Installation der Node-Abhängigkeiten durch, speichert und stellt sie wieder her, erstellt den Quellcode und führt Tests in verschiedenen Node-Versionen aus.
# Weitere Informationen finden Sie unter: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
name: Node.js CI

Check failure on line 12 in .github/workflows/node.js.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/node.js.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x] # Aktualisiert auf die neuesten LTS-Versionen von Node.js
steps:
- uses: actions/checkout@v2 # Aktualisiert auf die neueste stabile Version
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2 # Aktualisiert auf die neueste stabile Version
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm test