Skip to content

Commit

Permalink
Add Github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mchudy committed Sep 14, 2020
1 parent 7701445 commit bc2e2c2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: ts-routes CI

on: [push, pull_request]

jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm i
- name: Run tests
run: npm test
- name: Build
run: npm run build

0 comments on commit bc2e2c2

Please sign in to comment.