Skip to content

Commit 119ed3a

Browse files
committed
moved to github workflows
1 parent 9c347f7 commit 119ed3a

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
name: build
3+
on:
4+
- push
5+
- pull_request
6+
jobs:
7+
test:
8+
name: Node.js ${{ matrix.node-version }}
9+
runs-on: ubuntu-latest
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
node-version:
14+
- 14
15+
- 12
16+
- 10
17+
steps:
18+
- uses: actions/checkout@v2
19+
- uses: actions/setup-node@v1
20+
with:
21+
node-version: ${{ matrix.node-version }}
22+
- run: npm install
23+
- run: npm test

.travis.yml

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CREATE-EXPRESS-TEMPLATE [![Build Status](https://travis-ci.org/dopecodez/create-express-template.svg?branch=master)](https://travis-ci.org/dopecodez/create-express-template) [![Contributions](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/dopecodez/create-express-template/issues)
1+
# CREATE-EXPRESS-TEMPLATE [![build](https://github.com/dopecodez/create-express-template/workflows/build/badge.svg)](https://github.com/dopecodez/create-express-template/actions) [![Contributions](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/dopecodez/create-express-template/issues)
22

33
Create a modern express server with a single command.
44

0 commit comments

Comments
 (0)