Skip to content

Commit

Permalink
ci: set up
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanHahn committed Jun 20, 2024
1 parent 5c24f08 commit 8096d91
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: npm test

on:
push:
branches: [main]
pull_request:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm test

0 comments on commit 8096d91

Please sign in to comment.