Merge pull request #1252 from look4regev/patch-1 #386
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: Lint & Generate HTML from Markdown | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
defaults: | |
run: | |
shell: bash | |
working-directory: .operations | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-20.04 | |
env: | |
NODE_ENV: test | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- run: npm install | |
- run: npm run lint |