Skip to content

OpenVPN Server einrichten: Konfigurationen auf aktuellen Stand gebracht #36

OpenVPN Server einrichten: Konfigurationen auf aktuellen Stand gebracht

OpenVPN Server einrichten: Konfigurationen auf aktuellen Stand gebracht #36

Workflow file for this run

name: Lint Markdown Files
# Run this job on all pushes and pull requests
on:
push:
branches:
- "*"
pull_request: {}
jobs:
# Perform the lint
lint:
if: contains(github.event.head_commit.message, '[skip ci]') == false
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint