Skip to content

Commit

Permalink
chore: swap travis for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
waldenraines authored and bucko13 committed Oct 27, 2023
1 parent b3d671d commit 4254f34
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 31 deletions.
21 changes: 21 additions & 0 deletions .github/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14.x', '16.x', '18.x']

steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test

31 changes: 0 additions & 31 deletions .travis.yml

This file was deleted.

0 comments on commit 4254f34

Please sign in to comment.