Skip to content

Commit

Permalink
Merge pull request #16 from christianvuerings/convert-to-github-ci
Browse files Browse the repository at this point in the history
Convert CI from Travis.CI to GitHub workflows
  • Loading branch information
ljharb authored Nov 7, 2024
2 parents 216c90d + ed2d5a0 commit 99c84fa
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 15 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 10, 12, 14, 16, 18 ]
name: Node ${{ matrix.node }}
continue-on-error: true
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm test
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

0 comments on commit 99c84fa

Please sign in to comment.