Skip to content

Commit

Permalink
build: add initial GH actions test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular authored Nov 14, 2020
1 parent 4e6ebcf commit d91a937
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
push:
branches:
- develop
- master
pull_request:
branches:
- develop

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: '>=14.6.0'
- run: yarn test

0 comments on commit d91a937

Please sign in to comment.