From b85b8fc39eb1090dce76acff45aa5b966934f670 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Wed, 23 Dec 2020 11:36:31 -0800 Subject: [PATCH] [Tests] add `readme` tests I forgot in #2887 --- .github/workflows/readme.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/readme.yml diff --git a/.github/workflows/readme.yml b/.github/workflows/readme.yml new file mode 100644 index 0000000000..822b751cec --- /dev/null +++ b/.github/workflows/readme.yml @@ -0,0 +1,16 @@ +name: 'Tests: readme' + +on: [pull_request, push] + +jobs: + readme: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: ljharb/actions/node/run@main + name: 'npm install && npm run generate-list-of-rules' + with: + node-version: 'lts/*' + command: 'generate-list-of-rules' + skip-ls-check: true \ No newline at end of file