Skip to content

Commit

Permalink
build: gha
Browse files Browse the repository at this point in the history
  • Loading branch information
omsmith authored Aug 14, 2024
1 parent 1e0c369 commit 0658377
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
push:
branches:
- master
pull_request:

jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
node: [8, 10, 12, 14, 16, 18, 20]
steps:
- uses: Brightspace/third-party-actions@actions/checkout

- uses: Brightspace/third-party-actions@actions/setup-node
with:
node-version: ${{ matrix.node }}

- run: npm install
- run: npm test

0 comments on commit 0658377

Please sign in to comment.