Skip to content

CI

CI #127

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- '*'
schedule:
- cron: "0 0 * * 0"
jobs:
tests:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
node-version: [10.x, 12.x, 14.x, 15.x, 16.x]
steps:
- uses: actions/checkout@v3
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: ./node_modules/.bin/bower install
- run: ./node_modules/.bin/grunt --verbose