Compare commits

...

5 Commits

Author SHA1 Message Date
d8d165a5da Test lint CI
All checks were successful
Lint and Build / Run lint and build checks (push) Successful in 3m49s
2025-12-29 14:35:20 +05:30
7bcd6fa1a0 Update lint and build workflow
All checks were successful
Lint and Build / Run lint and build checks (pull_request) Successful in 3m45s
2025-12-29 14:01:28 +05:30
40118f53f6 Revert "Add lint and build github workflow"
All checks were successful
/ Run lint and build checks (pull_request) Successful in 3m37s
This reverts commit c4aa6a8494.
2025-12-26 10:26:52 +05:30
a612d43f97 Update gitea lint CI to trigger on push to main branch
All checks were successful
/ Run lint and build checks (pull_request) Successful in 3m49s
2025-12-23 16:58:09 +05:30
AdityaSalunkhe21
c4aa6a8494 Add lint and build github workflow 2025-12-23 16:58:09 +05:30

View File

@ -3,17 +3,20 @@ name: Lint and Build
on:
pull_request:
branches: [ main ]
push:
# branches: [ main ]
jobs:
lint-and-build:
name: Run lint and build checks
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '22'
@ -22,9 +25,9 @@ jobs:
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run ESLint
run: yarn lint
- name: Run build
run: yarn build