Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
romainmenke committed Jun 4, 2023
1 parent ac7c6b9 commit ea205d7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
12 changes: 11 additions & 1 deletion .github/bin/format-package-json.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,17 @@ const formatted = {};
formatted.license = 'CC0-1.0';
}

formatted.funding = packageJSONInfo.funding;
formatted.funding = [
{
"type": "github",
"url": "https://github.com/sponsors/csstools"
},
{
"type": "opencollective",
"url": "https://opencollective.com/csstools"
}
];

delete packageJSONInfo.funding;
}

Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ on:
- 'main'
pull_request:
workflow_dispatch:
inputs:
build_and_test_all_packages:
type: boolean
description: Lint all packages
required: true

concurrency:
group: branch-node--lint--${{ github.ref }}
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ on:
- 'main'
pull_request:
workflow_dispatch:
inputs:
build_and_test_all_packages:
type: boolean
description: Build and test all packages
required: true

concurrency:
group: branch-node--test--${{ github.ref }}
Expand Down

0 comments on commit ea205d7

Please sign in to comment.