Skip to content

Commit

Permalink
Create npm-grunt.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
devkadirselcuk authored Oct 10, 2021
1 parent f7467a1 commit 182061d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/npm-grunt.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: NodeJS with Grunt

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

jobs:
build:
runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v2

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

- name: Build
run: |
npm install
grunt

0 comments on commit 182061d

Please sign in to comment.