sindresorhus/refined-github

Verify every feature on CI #4698

fregante posted onGitHub

This workflow should be replaced by a simple node script that ensures:

  • only .tsx and .css files exist in /features/
  • getFeaturesMeta matches the tsx files in /features/ exactly and is full
  • each file appears in refined-github.tsx

Pseudo-code:

const featuresFromReadme = getFeaturesMeta()

for (const file of featuresDirectory) {
    if (file.extension === 'css' || file === 'index.tsx') {
        continue;
    }

    if (!featuresFromReadme[file]) {
        throw error
    }

    if (featuresFromReadme[file].description.length < 20) {
        throw error too short
    }

    if (refinedGithubTex.includes(`import "./features/${file.name}"`) {
        throw error;
    }
}

Ideally written in a way that it can report multiple errors, for example by replacing the throw with console.error + a variable that will mark the run as failed.


Hi, could I take a crack at this?

posted by gamemaker1 over 3 years ago

Sure! It can be a script in the build folder and it can be called by the ci.yml workflow as its own job, via something like node build/verify-features.js

posted by fregante over 3 years ago

How ahould I go about using getFeaturesMeta (that's in build/readme-parser.ts)?

posted by gamemaker1 over 3 years ago

With ts-node, we already have it but it's not used anywhere.

npx ts-node build/verify-features.ts
posted by fregante over 3 years ago

Ohk thanks

posted by gamemaker1 over 3 years ago

Fund this Issue

$0.00
Funded

Pull requests