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

Commit

Permalink
feat(actions): add test/compile action (#7)
Browse files Browse the repository at this point in the history
* feat(actions): add test/compile action

* fix(actions): fix compile command

* feat(actions): remove redundant compile step
  • Loading branch information
Will Nelson committed Sep 29, 2019
1 parent 48a1fb7 commit 7f9fc7d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Test

on: [push, pull_request]

jobs:
compile:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- name: Install and compile
run: npm install

0 comments on commit 7f9fc7d

Please sign in to comment.