Skip to content

Commit

Permalink
Merge pull request #126 from ember-fastboot/gh-actions
Browse files Browse the repository at this point in the history
Migrate to GitHub Actions.
  • Loading branch information
rwjblue committed Oct 26, 2020
2 parents ddd742b + f9b2b31 commit 5694a70
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 14 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,24 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn test
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

0 comments on commit 5694a70

Please sign in to comment.