Skip to content

Commit 7fed7b5

Browse files
committed
Restore CI (switch travis/appveyor to github)
While at it, fix badge from low-res PNG to SVG and use current preferred URL per https://gruntjs.com/built-with-grunt-badge.
1 parent 331a476 commit 7fed7b5

5 files changed

Lines changed: 37 additions & 38 deletions

File tree

.github/workflows/test.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
env:
9+
FORCE_COLOR: 2
10+
11+
jobs:
12+
run:
13+
name: Node ${{ matrix.node }} on ${{ matrix.os }}
14+
runs-on: ${{ matrix.os }}
15+
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
os: [ubuntu-latest, windows-latest]
20+
node: [10, 16, 18, 20, 22]
21+
22+
steps:
23+
- name: Clone repository
24+
uses: actions/checkout@v4
25+
with:
26+
persist-credentials: false
27+
28+
- name: Set up Node.js
29+
uses: actions/setup-node@v4
30+
with:
31+
node-version: ${{ matrix.node }}
32+
33+
- run: npm install
34+
35+
- run: npm test

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# grunt-legacy-log-utils
22
> Static methods for the Grunt 0.4.x logger.
33
4-
[![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-legacy-log-utils.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-legacy-log-utils)
5-
[![Build Status: Windows](https://ci.appveyor.com/api/projects/status/a6s4cy3fcbl33hnp?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-legacy-log-utils)
6-
[![Built with Grunt](https://cdn.gruntjs.com/builtwith.png)](http://gruntjs.com/)
4+
[![Build Status](https://github.com/gruntjs/grunt-legacy-log-utils/workflows/Tests/badge.svg)](https://github.com/gruntjs/grunt-legacy-log-utils/actions?workflow=Tests)
5+
[![Built with Grunt](https://gruntjs.com/builtwith.svg)](https://gruntjs.com/)

appveyor.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
},
3333
"devDependencies": {
3434
"grunt": "~1.2.1",
35-
"grunt-cli": "~1.3.2",
3635
"grunt-contrib-jshint": "~2.1.0",
3736
"grunt-contrib-nodeunit": "~2.1.0",
3837
"grunt-contrib-watch": "~1.1.0"

0 commit comments

Comments
 (0)