Skip to content

Commit

Permalink
Configure GitHub Action for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kemitchell committed Nov 21, 2023
1 parent 86ebef5 commit 19f25b5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [8, 10, 12, 14, 16, 18, 20 ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test
env:
CI: true
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

0 comments on commit 19f25b5

Please sign in to comment.