Skip to content
This repository was archived by the owner on Aug 9, 2020. It is now read-only.

Commit 7f9fc7d

Browse files
author
Will Nelson
authored
feat(actions): add test/compile action (#7)
* feat(actions): add test/compile action * fix(actions): fix compile command * feat(actions): remove redundant compile step
1 parent 48a1fb7 commit 7f9fc7d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/test.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
compile:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- uses: actions/setup-node@v1
13+
- name: Install and compile
14+
run: npm install

0 commit comments

Comments
 (0)