feat: ci for all pushes, deploy with ssh key, local compose with build
CI / build (push) Failing after 2m11s
Deploy / deploy (push) Has been cancelled

This commit is contained in:
2026-06-13 21:00:09 +03:00
parent fb6bf6e1bf
commit 2a108e1b5a
5 changed files with 28 additions and 25 deletions
+9 -11
View File
@@ -1,27 +1,25 @@
name: ci
name: CI
on:
push:
branches:
- dev
pull_request:
branches:
branches-ignore:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Node setup
uses: actions/setup-node@v6
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "25"
- name: Install deps
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build