Skip to content

Commit

Permalink
github action
Browse files Browse the repository at this point in the history
  • Loading branch information
thejoshwolfe committed Feb 15, 2024
1 parent f3d6ece commit fdc7350
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
strategy:
matrix:
node-version:
- 0.10
- 4
- 6
- 8
- 10
- 12
- 14
- 16
- 18
- 20

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: node test/test.js

0 comments on commit fdc7350

Please sign in to comment.