Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run tests using GitHub Actions, not CircleCI
Browse files Browse the repository at this point in the history
bradenmacdonald committed Dec 31, 2023
1 parent dbde009 commit c7645dc
Showing 2 changed files with 20 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .circleci/config.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Run tests (Node.js)

on: [push]

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 ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test

0 comments on commit c7645dc

Please sign in to comment.