From 897aad90342bf47f6a0f0c41724fd3b529bb7cc6 Mon Sep 17 00:00:00 2001 From: Raymond Wang Date: Sun, 23 Oct 2022 16:30:22 -0700 Subject: [PATCH] create validation workflow --- .github/workflows/validation.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/validation.yml diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml new file mode 100644 index 0000000..7bb0c18 --- /dev/null +++ b/.github/workflows/validation.yml @@ -0,0 +1,14 @@ +name: Validation Testing + +on: [push, pull_request] + +jobs: + validate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@latest + - uses: actions/setup-node@latest + - name: Install Dependencies + run: npm ci + - name: Run eslint + run: npm run lint