From a060d3d604e5a3bd27ae92db457736f81172e179 Mon Sep 17 00:00:00 2001 From: juliannzhou <65748924+juliannzhou@users.noreply.github.com> Date: Thu, 30 Jun 2022 10:47:08 -0400 Subject: [PATCH] add reusable workflow for ESlint to answers-core (#175) This PR adds reusable workflow for ESlint to answers-core. J=SLAP-2199 TEST=auto --- .github/workflows/run-linting.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/run-linting.yml diff --git a/.github/workflows/run-linting.yml b/.github/workflows/run-linting.yml new file mode 100644 index 00000000..94ff0b3e --- /dev/null +++ b/.github/workflows/run-linting.yml @@ -0,0 +1,9 @@ +name: Run Linter + +on: + pull_request: + branches: [master, develop, release/*, hotfix/*] + +jobs: + linting: + uses: yext/slapshot-reusable-workflows/.github/workflows/run-linting.yml@v1 \ No newline at end of file