From aaf9ba3b0e8481bdf3e17fdc7154ead1397faf61 Mon Sep 17 00:00:00 2001 From: Kawika Avilla Date: Fri, 9 Apr 2021 13:12:06 -0700 Subject: [PATCH] [CI] Update pr template and workflow (#261) Updated the PR template to be in .github so github can find it and automatically apply it to all PRs. Also renamed bootstrap_lint workflow to be more inclusive of the commands and added unit tests to be ran for PRs. Signed-off-by: Kawika Avilla --- .github/{PULL_REQUEST_TEMPLATE => }/pull_request_template.md | 0 .../{bootstrap_lint_workflow.yml => pr_check_workflow.yml} | 1 + 2 files changed, 1 insertion(+) rename .github/{PULL_REQUEST_TEMPLATE => }/pull_request_template.md (100%) rename .github/workflows/{bootstrap_lint_workflow.yml => pr_check_workflow.yml} (96%) diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/pull_request_template.md similarity index 100% rename from .github/PULL_REQUEST_TEMPLATE/pull_request_template.md rename to .github/pull_request_template.md diff --git a/.github/workflows/bootstrap_lint_workflow.yml b/.github/workflows/pr_check_workflow.yml similarity index 96% rename from .github/workflows/bootstrap_lint_workflow.yml rename to .github/workflows/pr_check_workflow.yml index 346b85905376..b60cc4c5900b 100644 --- a/.github/workflows/bootstrap_lint_workflow.yml +++ b/.github/workflows/pr_check_workflow.yml @@ -27,3 +27,4 @@ jobs: node-version: ${{ matrix.node-version }} - run: yarn osd bootstrap - run: yarn lint + - run: yarn test:jest