Skip to content

Add initial CI/CD workflow #20

Add initial CI/CD workflow

Add initial CI/CD workflow #20

Workflow file for this run

name: Code Quality Checks
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
env:
node_version: ${{ vars.NODE_VERSION }}
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Setup
uses: ./.github/workflows/setup/
with:
node_version: ${{ env.node_version }}
- name: Run Prettier & ESLint
run: npm run lint