Skip to content

Commit 49a9b63

Browse files
authored
UIDS-91 Enable github actions for linting and tests (#222)
1 parent d06e6b2 commit 49a9b63

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.github/workflows/lint.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Lint javascript
2+
3+
on: push
4+
5+
jobs:
6+
js-lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-node@v1
11+
- run: yarn
12+
- run: yarn lint

.github/workflows/test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Test javascript
2+
3+
on: push
4+
5+
jobs:
6+
js-test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-node@v1
11+
- run: yarn
12+
- run: yarn test

0 commit comments

Comments
 (0)