Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: PR Checks
on:
pull_request:
types:
- opened
jobs:
pr-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v4

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a v7 now

- name: Setup Node
uses: actions/setup-node@v4

@yogainalift yogainalift Aug 26, 2026

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a v7 now

with:
node-version: 16.20.2

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And this node version should be updated

- name: Install NPM Packages
run: npm install --also=dev
- name: Run ESlint
run: npm run lint
- name: Run Unit Tests
run: npm run test
- name: Build Project
run: npm run build:prod