Skip to content

docs: update CONTRIBUTING.md with info about eslint, prettier, and husky #6

docs: update CONTRIBUTING.md with info about eslint, prettier, and husky

docs: update CONTRIBUTING.md with info about eslint, prettier, and husky #6

Workflow file for this run

name: CI/CD Workflow for Develop and Main Branches
on:
push:
branches:
- develop
- main
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22.x'
- run: npm ci
- run: npm run format
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22.x'
- run: npm ci
- run: npm run test
build:
needs: [lint-and-format, test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22.x'
- run: npm ci
- run: npm run build