Skip to content

Commit

Permalink
Replace Travis CI with Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sisou committed Nov 10, 2020
1 parent e67547d commit 1ac6da8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 12 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/complete-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Complete Check

on:
- pull_request

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install modules
run: yarn
- name: Lint
run: yarn lint
- name: Build
run: yarn build:ci
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

0 comments on commit 1ac6da8

Please sign in to comment.