Skip to content

Commit

Permalink
GPIIGH-3: Added initial CI config.
Browse files Browse the repository at this point in the history
  • Loading branch information
the-t-in-rtf committed Nov 29, 2021
1 parent f918604 commit 7ed948c
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

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

env:
HEADLESS: true

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Install Node.js dependencies
run: npm install

- name: Node Tests
run: npm test

- name: Lint Code
run: $(npm bin)/grunt lint

0 comments on commit 7ed948c

Please sign in to comment.