Skip to content

Commit

Permalink
Automated Test On Push and PR with github workflow (#68)
Browse files Browse the repository at this point in the history
* Created basic github workflow for running test

* Added Push to triggers
  • Loading branch information
teezzan authored Oct 8, 2021
1 parent 3c1fe44 commit e6104bb
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Run Tests on Push and PR

on: [pull_request, push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Elm environment
uses: JorelAli/setup-elm@v3
with:
elm-version: 0.19.1
- run: |
mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
PATH=~/.npm-global/bin:$PATH
npm install -g elm-test
elm-test

0 comments on commit e6104bb

Please sign in to comment.