Skip to content

Commit

Permalink
Merge pull request #182 from gruntjs/updates2
Browse files Browse the repository at this point in the history
Dependency updates
  • Loading branch information
vladikoff authored May 15, 2021
2 parents b9387c3 + 5213487 commit 11695bb
Show file tree
Hide file tree
Showing 17 changed files with 2,462 additions and 1,940 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Tests

on: [push, pull_request]

env:
FORCE_COLOR: 2

jobs:
run:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
node: [10, 12, 14]
os: [ubuntu-latest, windows-latest]

steps:
- name: Clone repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}

- name: Install npm dependencies
run: npm ci

- name: Run tests
run: npm test

# We test multiple Windows shells because of prior stdout buffering issues
# filed against Grunt. https://github.com/joyent/node/issues/3584
- name: Run PowerShell tests
run: "npm test # PowerShell" # Pass comment to PS for easier debugging
shell: powershell
if: startsWith(matrix.os, 'windows')
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# grunt-contrib-handlebars v2.0.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-handlebars.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-handlebars) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/byxsu7xtyjxuwe3g/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-handlebars/branch/master)
# grunt-contrib-handlebars v2.0.0 [![Build Status](https://github.com/gruntjs/grunt-contrib-handlebars/workflows/Tests/badge.svg)](https://github.com/gruntjs/grunt-contrib-handlebars/actions?workflow=Tests)

> Precompile Handlebars templates to JST file.
Expand Down Expand Up @@ -288,4 +288,4 @@ handlebars: {

Task submitted by [Tim Branyen](http://tbranyen.com)

*This file was generated on Mon Sep 30 2019 11:14:56.*
*This file was generated on Fri May 14 2021 21:44:38.*
34 changes: 0 additions & 34 deletions appveyor.yml

This file was deleted.

Loading

0 comments on commit 11695bb

Please sign in to comment.