Skip to content

Commit

Permalink
Migrate from Travis to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberixae committed Apr 20, 2022
1 parent 6cb181d commit 627a7de
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
pull_request:
branches:
- main

jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 30
name: CI
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install Dependencies
run: |
yarn
- name: Run Tests
run: |
yarn ci
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

0 comments on commit 627a7de

Please sign in to comment.