Skip to content

Commit

Permalink
Merge pull request #63 from MikeMcC399/add/ci-github-action
Browse files Browse the repository at this point in the history
ci: add GitHub Actions workflow
  • Loading branch information
nelsonic authored Dec 12, 2024
2 parents 2b6476c + a248669 commit c97da69
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: ci-test
on: [push, pull_request]

jobs:

ps-tree-ci:
strategy:
fail-fast: false
matrix:
node: [18, 20, 22, 23]
os: [ubuntu-24.04, windows-2022, macos-14]
runs-on: ${{ matrix.os }}
steps:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: node -v
- run: npm -v
- name: Checkout
uses: actions/checkout@v4
- run: npm ci
- run: npm test
- run: npm run coverage

0 comments on commit c97da69

Please sign in to comment.