Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 6007a67

Browse files
committed
Rebase code for CI tests
2 parents 79528b7 + d487ceb commit 6007a67

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/validating.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: validate
2+
on: [push, pull_request]
3+
jobs:
4+
run-test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- uses: actions/setup-node@v1
9+
- run: npm i
10+
- run: npm run test
11+
run-jshint:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v1
16+
- run: npm i
17+
- run: npm run jshint

0 commit comments

Comments
 (0)