Skip to content

fix(ci): add missing checkout action to lint job #2

fix(ci): add missing checkout action to lint job

fix(ci): add missing checkout action to lint job #2

Workflow file for this run

on:
push:
branches:
- main
- release/*
jobs:
lint:
name: Lint Code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install Node Dependencies
run: npm install
- name: Lint Code with ESLint
run: npm run lint