Skip to content

πŸš€ v75.0.0

πŸš€ v75.0.0 #1079

Workflow file for this run

# For more information about the configurations used
# in this file, please see the GitHub actions documentation.
#
# https://help.github.com/en/github/automating-your-workflow-with-github-actions/
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm install
- name: Validate Markdown
run: npm run lint-markdown
name: Test
on: push