Skip to content

Commit

Permalink
Merge 3c3e832 into 746bccd
Browse files Browse the repository at this point in the history
  • Loading branch information
jjhbw committed Apr 25, 2020
2 parents 746bccd + 3c3e832 commit 79cf1c3
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,22 @@
name: CI

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

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
# The type of runner that the job will run on
runs-on: ubuntu-16.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '10.x'
- run: yarn install --frozen-lockfile
- run: yarn test

0 comments on commit 79cf1c3

Please sign in to comment.