Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
linusnorton committed Oct 28, 2023
1 parent df4bc50 commit 9dad965
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,25 @@
name: Test

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['16', '18', '20']
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
cache: npm
- run: npm install
- run: npm test

0 comments on commit 9dad965

Please sign in to comment.