Skip to content

Merge pull request #10 from sankaSanjeeva/develop #15

Merge pull request #10 from sankaSanjeeva/develop

Merge pull request #10 from sankaSanjeeva/develop #15

Workflow file for this run

name: Lint and TypeScript Checks
on:
push:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
run: yarn install
- name: Run TypeScript check and Build
run: yarn build
- name: Run ESLint
run: yarn lint
- name: Execute Unit tests
run: yarn test