Skip to content

Fix link to zip file (#561) #3307

Fix link to zip file (#561)

Fix link to zip file (#561) #3307

Workflow file for this run

name: CI workflow
# Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "test"
test:
name: MarkdownChecks
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out repository
uses: actions/checkout@v2
# Use Node.js
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: '12.x'
# Runs markdownlint
- name: Run markdown linter
run: |
npm i -g [email protected]
markdownlint "content/en/**/*.md"