Skip to content

Commit

Permalink
chore: replace travis-ci with github action to run test, lint tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
m-sureshraj committed Jun 17, 2021
1 parent 6753c05 commit 0bbc6d3
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 19 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Jenni CI

on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: '8.12'
- run: npm ci
- run: npm run lint
- run: npm test -- --ci
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
node_modules
.idea
.project-notes
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

0 comments on commit 0bbc6d3

Please sign in to comment.