Skip to content

Commit

Permalink
build: setup GitHub CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Krinkle committed Aug 28, 2024
1 parent 1c2ffd2 commit 1227879
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 6 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI
on:
- push
- pull_request

jobs:

test:
strategy:
matrix:
include:
- node: 10.x
- node: 12.x
- node: 14.x
- node: 16.x
- node: 18.x
- node: 20.x

name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout

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

- run: npm install

- run: npm test
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.com/qunitjs/node-qunit.svg?branch=master)](https://travis-ci.com/qunitjs/node-qunit) [![npm](https://img.shields.io/npm/v/node-qunit.svg?style=flat)](https://www.npmjs.com/package/node-qunit)
[![npm](https://img.shields.io/npm/v/node-qunit.svg?style=flat)](https://www.npmjs.com/package/node-qunit)

## QUnit testing framework for Node.js

Expand Down

0 comments on commit 1227879

Please sign in to comment.