Skip to content

Commit

Permalink
Set up CI testing using Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Jun 30, 2021
1 parent eb84c4e commit 19ed1fc
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yaml
@@ -0,0 +1,23 @@
name: Node.js CI

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run test
env:
CI: true
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

0 comments on commit 19ed1fc

Please sign in to comment.