Skip to content
This repository has been archived by the owner on Jan 22, 2024. It is now read-only.

Bump actions/setup-node from 3 to 4 #1124

Bump actions/setup-node from 3 to 4

Bump actions/setup-node from 3 to 4 #1124

Workflow file for this run

name: Build Status
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install yarn
run: npm install -g yarn
- name: Install linter
run: npm install -g markdownlint-cli
- name: Lint
run: |
markdownlint '**/*.md'