From dd3fde91a9e063057aeb0285d53b8c1c441a7d8d Mon Sep 17 00:00:00 2001 From: Nathan Lewis Date: Wed, 24 Jan 2024 10:01:46 -0600 Subject: [PATCH] chore(gh workflow): add lint workflow --- .github/workflows/lint.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000..44021d87 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,20 @@ +name: Lint Check + +on: [push, pull_request] + +jobs: + lint: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js + uses: actions/setup-node@v1 + with: + node-version: '14' + + - name: Install Dependencies + run: yarn install + + - name: Run Lint + run: yarn lint