Skip to content

Commit

Permalink
Use GitHub actions for CI (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
berniegp committed Apr 12, 2023
1 parent 46fb6fc commit a466218
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 12 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Node.js CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [
14,
16,
18,
19,
]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test:ci
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

0 comments on commit a466218

Please sign in to comment.