Rename to lint and test and it now includes both lint and tests steps

This commit is contained in:
Volodymyr Zotov
2025-12-12 14:23:00 -06:00
parent df80909445
commit 74df766d96

36
.github/workflows/lint-and-test.yml vendored Normal file
View File

@@ -0,0 +1,36 @@
name: Lint and Test
on:
push:
branches: [main]
pull_request:
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@2.0.0
with:
ignore_paths: >-
.husky
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check
- name: Check lint
run: npm run lint
- name: Run unit tests
run: npm test