Skip to content

Adding next lint to pipeline #6

Adding next lint to pipeline

Adding next lint to pipeline #6

Workflow file for this run

name: Next Lint
on:
pull_request:
branches:
- main
jobs:
next-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run next lint
run: npm run lint