Add build artifact upload step to Release workflow

This commit is contained in:
Vanilagy
2025-07-09 11:58:15 +02:00
parent 84c9d37cb7
commit 47bae059db
3 changed files with 6 additions and 1 deletions
+31
View File
@@ -0,0 +1,31 @@
name: Lint
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build
- name: Run TypeScript
run: npm run check
- name: Run ESLint
run: npm run lint