Skip to content

Fixing Try Now Button #3

Fixing Try Now Button

Fixing Try Now Button #3

Workflow file for this run

name: Lint Code Base
on:
pull_request:
branches: [main]
jobs:
lint:
name: Lint Code
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run Lint
run: npm run lint