build: gitea pipeline test
Some checks failed
Deploy / lint-build-deploy (push) Failing after 1m42s

This commit is contained in:
2026-01-18 16:31:54 +00:00
parent ca88c6b496
commit 63b462b6f2

View File

@@ -0,0 +1,29 @@
name: Deploy
on:
push:
branches: [ main ]
jobs:
lint-build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint
- name: Build
run: npm run build
- name: Deploy notification
run: echo "Build successful! Deploy step would go here"