Switch from Travis CI to GitHub Actions

This commit is contained in:
Tim van der Meij 2020-12-19 22:01:10 +01:00
parent 1c8ead133a
commit dd190a59b9
No known key found for this signature in database
GPG Key ID: 8C3FD2925A5F2762
2 changed files with 14 additions and 10 deletions

14
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,14 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14 LTS
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: npm install -g gulp-cli
- run: npm install
- run: npm test

View File

@ -1,10 +0,0 @@
language: node_js
node_js:
- lts/*
cache:
directories:
- node_modules
install:
- npm install -g npm@latest
- npm install -g gulp-cli
- npm install