Skip to content

Merge branch 'main' of https://github.com/pbdsce/pbwebsite #122

Merge branch 'main' of https://github.com/pbdsce/pbwebsite

Merge branch 'main' of https://github.com/pbdsce/pbwebsite #122

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint