Skip to content

Update README and bump to v0.2.1 #47

Update README and bump to v0.2.1

Update README and bump to v0.2.1 #47

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