Compare commits

...
Author SHA1 Message Date
shreerang baa62a7c11 Test build CI
Build / Build (push) Successful in 1m10s
2025-12-29 15:12:04 +05:30
shreerang 47d90de2e8 Remove step to upload build artifacts 2025-12-29 15:11:21 +05:30
shreerang c1c74fc8e1 Test build CI
Build / Build (push) Failing after 1m20s
2025-12-29 14:40:59 +05:30
shreerang 7f075c2bd7 Remove lint workflow 2025-12-29 14:19:31 +05:30
shreerang 9885d4b3eb Revert "Add lint and build github workflow"
This reverts commit f36a6bb87c.
2025-12-29 14:17:32 +05:30
shreerang 78f5a1531f Revert "Fix lint and type errors"
This reverts commit 2ee6d3ea00.
2025-12-29 14:17:22 +05:30
pranav 9bbe803765 Add lint and build gitea workflow 2025-12-23 18:10:19 +05:30
AdityaSalunkhe21 f36a6bb87c Add lint and build github workflow 2025-12-19 12:18:04 +05:30
AdityaSalunkhe21 2ee6d3ea00 Fix lint and type errors 2025-12-19 12:09:38 +05:30
+33
View File
@@ -0,0 +1,33 @@
name: Build
on:
push:
# branches: [master, dev]
paths:
- 'src/**'
pull_request:
branches: [master, dev]
paths:
- 'src/**'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Enable corepack and yarn
run: corepack enable
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build project
run: yarn build