This repository was archived by the owner on May 27, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +48
-0
lines changed Expand file tree Collapse file tree 2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: 2023 Coop IT Easy SC <https://coopiteasy.be>
2+ #
3+ # SPDX-License-Identifier: CC-BY-SA-4.0
4+
5+ name : Test suites
6+
7+ on :
8+ push :
9+ branches :
10+ - main
11+ pull_request :
12+
13+ jobs :
14+ prettier :
15+ runs-on : ubuntu-20.04
16+ container : node:latest
17+ steps :
18+ - uses : actions/checkout@v2
19+ - name : Install prettier
20+ run :
npm install [email protected] 21+ - name : Run prettier
22+ run : npx prettier --check .
23+
24+ reuse :
25+ runs-on : ubuntu-20.04
26+ steps :
27+ - uses : actions/checkout@v2
28+ - name : Set up Python
29+ uses : actions/setup-python@v2
30+ - name : Install dependencies
31+ run : pip install reuse
32+ - name : Test REUSE compliance
33+ run : reuse lint
Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: 2018 Free Software Foundation Europe e.V. <https://fsfe.org>
2+ #
3+ # SPDX-License-Identifier: CC-BY-SA-4.0
4+
5+ repos :
6+ - repo : https://github.com/pre-commit/mirrors-prettier
7+ rev : v2.7.1
8+ hooks :
9+ - id : prettier
10+ name : prettier
11+
12+ - repo : https://github.com/fsfe/reuse-tool
13+ rev : main
14+ hooks :
15+ - id : reuse
You can’t perform that action at this time.
0 commit comments