File tree Expand file tree Collapse file tree 3 files changed +37
-41
lines changed
Expand file tree Collapse file tree 3 files changed +37
-41
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: © 2026 Logan Magee
2+ #
3+ # SPDX-License-Identifier: AGPL-3.0-only
4+
5+ name : CI
6+
7+ on : [push, pull_request]
8+
9+ permissions :
10+ contents : read
11+
12+ jobs :
13+ build :
14+ runs-on : ubuntu-latest
15+ steps :
16+ - uses : actions/checkout@j6
17+ - uses : actions/setup-node@v6
18+ with :
19+ node-version : 24
20+ check-latest : true
21+ - run : npm ci
22+ - run : npm run build
23+ lint :
24+ runs-on : ubuntu-latest
25+ steps :
26+ - uses : actions/checkout@v6
27+ - uses : actions/setup-node@v6
28+ with :
29+ node-version : 24
30+ check-latest : true
31+ - run : npm ci
32+ - run : npm run lint
33+ reuse :
34+ runs-on : ubuntu-latest
35+ steps :
36+ - uses : actions/checkout@v6
37+ - uses : fsfe/reuse-action@v6
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments