Skip to content

Commit

Permalink
fix: use GitHub Actions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fand committed Sep 3, 2022
1 parent ec39659 commit cbbc237
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 16 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Run Tests

on:
push:
branches:
- main

jobs:
test:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "16"
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Build
run: yarn build

- name: Run Tests
run: yarn test
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

0 comments on commit cbbc237

Please sign in to comment.