Skip to content

chore: create a workflow to automate the build #18

chore: create a workflow to automate the build

chore: create a workflow to automate the build #18

Workflow file for this run

name: QA Checks
on:
push:
branches-ignore:
- "dependabot/**"
jobs:
qa-checks:
name: Run QA Checks
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4.1.1
- name: Setup Node.js for the Environment
uses: actions/setup-node@v4.0.0
with:
node-version: 18
cache: "npm"
- name: Install the Dependencies
run: npm ci --ignore-scripts
- name: Run Linting Checks
run: |
npm run lint
npm run format:check