Skip to content

feat(quick-actions): add quick actions #44

feat(quick-actions): add quick actions

feat(quick-actions): add quick actions #44

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
pull_request_target:
branches:
- main
permissions:
contents: read
pull-requests: read
jobs:
lint:
name: Lint Code
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint
- name: Check formatting
run: npm run format -- --check