create validation workflow

This commit is contained in:
Raymond Wang 2022-10-23 16:30:22 -07:00
parent 834ef4763d
commit 897aad9034

14
.github/workflows/validation.yml vendored Normal file
View file

@ -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