Skip to content

Commit

Permalink
Test setup
Browse files Browse the repository at this point in the history
  • Loading branch information
slevithan committed Oct 27, 2024
1 parent 7b68006 commit 7f0927a
Show file tree
Hide file tree
Showing 5 changed files with 582 additions and 3 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 22
- 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
Loading

0 comments on commit 7f0927a

Please sign in to comment.