Skip to content

added workflows and git hooks #9

added workflows and git hooks

added workflows and git hooks #9

Workflow file for this run

name: lint
on:
push:
pull_request:
types: [opened, synchronize]
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: "Checkout Repository"
uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v4
with:
node-version: 21.6.x
registry-url: 'https://registry.npmjs.org/'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint