Skip to content

feat: added REUSE compliance check action #79

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2025 Maximilian Franzke <[email protected]>
#
# SPDX-License-Identifier: MIT

# For more information about the properties used in
# this file, please see the EditorConfig documentation:
# https://editorconfig.org/
Expand Down
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2025 Maximilian Franzke <[email protected]>
#
# SPDX-License-Identifier: MIT

# adapted out of https://github.com/h5bp/html5-boilerplate/blob/main/.gitattributes and https://rehansaeed.com/gitattributes-best-practices/
# Automatically normalize line endings for all text-based files
# https://git-scm.com/docs/gitattributes#_end_of_line_conversion
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/reuse-compliance-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SPDX-FileCopyrightText: 2022 Free Software Foundation Europe e.V. <https://fsfe.org>
#
# SPDX-License-Identifier: CC0-1.0
---
name: REUSE Compliance Check

on: [push, pull_request]

permissions:
contents: read

jobs:
reuse-compliance-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: REUSE Compliance Check
uses: fsfe/reuse-action@v5
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2025 Maximilian Franzke <[email protected]>
#
# SPDX-License-Identifier: MIT

.DS_Store
node_modules
npm-debug.log
Expand Down
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2025 Maximilian Franzke <[email protected]>
#
# SPDX-License-Identifier: MIT

pnpm-lock.yaml
node_modules
dist
Expand Down
3 changes: 3 additions & 0 deletions .prettierrc.json.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
SPDX-FileCopyrightText: 2025 Maximilian Franzke <[email protected]>

SPDX-License-Identifier: MIT
4 changes: 4 additions & 0 deletions .yamllint.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2025 Maximilian Franzke <[email protected]>
#
# SPDX-License-Identifier: MIT

# Configuration file for yamllint.
# It extends the default conf by adjusting some options.

Expand Down
3 changes: 3 additions & 0 deletions package.json.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
SPDX-FileCopyrightText: 2025 Maximilian Franzke <[email protected]>

SPDX-License-Identifier: MIT
6 changes: 6 additions & 0 deletions packages/lightningcss-plugin-if-function/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2025 Maximilian Franzke <[email protected]>

SPDX-License-Identifier: MIT
-->

# lightningcss-plugin-if-function

[![Default CI/CD Pipeline](https://github.com/mfranzke/css-if-polyfill/actions/workflows/default.yml/badge.svg)](https://github.com/mfranzke/css-if-polyfill/actions/workflows/default.yml)
Expand Down
3 changes: 3 additions & 0 deletions tsconfig.json.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
SPDX-FileCopyrightText: 2025 Maximilian Franzke <[email protected]>

SPDX-License-Identifier: MIT
Loading