ci: update verify

This commit is contained in:
Aetherinox 2024-04-04 13:10:00 -07:00
parent 2aa6e05b53
commit ae4bce3a11
No known key found for this signature in database
GPG Key ID: CB5C4C30CD0D4028
1 changed files with 44 additions and 0 deletions

44
.github/workflows/verify.yml vendored Normal file
View File

@ -0,0 +1,44 @@
name: Verify
on:
push:
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: "Lint Checkout"
uses: actions/checkout@v3
- name: "Lint Setup NodeJS"
uses: actions/setup-node@v3
with:
node-version: '16'
- name: "Lint Install NPM Modules"
run: npm ci
- name: "Lint Run"
run: npm run lint
test:
needs:
- lint
runs-on: ubuntu-latest
steps:
- name: "Test Checkout"
uses: actions/checkout@v3
- name: "Test Setup NodeJS"
uses: actions/setup-node@v3
with:
node-version: '16'
- name: "Test Install NPM Modules"
run: npm ci
- name: "Test Run"
run: npm test