Skip to content

Commit

Permalink
Add GitHub actions for Mojito JS (#48)
Browse files Browse the repository at this point in the history
* Add Github Actions

* Github actions remove AA test
  • Loading branch information
kingo55 authored Jan 6, 2020
1 parent 804aef1 commit 48dc524
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Mojito JS Delivery CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Build & test a Mojito container
run: |
npm install
npm install -g gulp-cli
gulp build
gulp test
env:
CI: true

0 comments on commit 48dc524

Please sign in to comment.