create validation workflow
This commit is contained in:
parent
834ef4763d
commit
897aad9034
1 changed files with 14 additions and 0 deletions
14
.github/workflows/validation.yml
vendored
Normal file
14
.github/workflows/validation.yml
vendored
Normal 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
|
Loading…
Reference in a new issue