Skip to content

Add repo info to the package.json (#3) #61

Add repo info to the package.json (#3)

Add repo info to the package.json (#3) #61

name: Code Quality Checks
on:
push:
branches:
- main
pull_request:
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Format
run: npm run format:check
- name: Test
run: npm test
- name: Generate (forgot to update src/config/schema.json)
run: npm run generate && git diff --exit-code