Skip to content

Commit

Permalink
Create npm-grunt.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Feb 18, 2023
1 parent a028d2f commit 63d3429
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/npm-grunt.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Build, Lint, Test and Measure Coverage

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

jobs:
build:
runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v3

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

- name: Setup Environment
run: |
echo "NO_SERIALPORT_INSTALL=1" >> $GITHUB_ENV
- name: Install Dependencies
run: |
npm install -g grunt-cli
npm install
# - name: Validate Examples
# run: |
# grunt test-examples

- name: Linting
run: |
grunt jshint jscs
- name: Run Unit Tests
run: |
grunt nodeunit
- name: Run Test Coverage
run: |
npm run test-cover
npm run coveralls

0 comments on commit 63d3429

Please sign in to comment.