Skip to content

Commit

Permalink
ci: init GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Apr 10, 2024
1 parent 4810bd7 commit 28c9ed4
Show file tree
Hide file tree
Showing 3 changed files with 917 additions and 5 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI

on:
push:
pull_request:

permissions:
contents: read

jobs:
test-node:
runs-on: ubuntu-latest
timeout-minutes: 10

strategy:
matrix:
node-version:
- 20

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 28c9ed4

Please sign in to comment.