chore(deps): bump actions/setup-node from 3 to 4 #102
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integraton Test | |
on: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 12 | |
- name: Markdown SEO Check | |
uses: ./ | |
with: | |
includes: 'test/pass/*.md' | |
max_title_length: 70 | |
max_description_length: 150 | |
max_slug_length: 100 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |