Skip to content

Merge pull request #858 from citation-file-format/release-2.3.1 #1042

Merge pull request #858 from citation-file-format/release-2.3.1

Merge pull request #858 from citation-file-format/release-2.3.1 #1042

Workflow file for this run

name: Lint
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Run npm clean-install
run: npm clean-install
- name: Run linting
run: npm run lint