Skip to content

Commit

Permalink
Add GH actions test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
allthesignals authored Feb 9, 2021
1 parent 437a79b commit 584d8cb
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build

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

jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 10.x
- name: install dependencies
run: yarn install --frozen-lockfile --non-interactive
- name: build
env:
DISABLE_SOURCE_MAPS: true
BROCCOLI_ENV: production
run: yarn ember build -prod
- name: test
run: yarn test

0 comments on commit 584d8cb

Please sign in to comment.