Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update CI to include windows as well as test Node 14, which I think(?…
…) we still support
  • Loading branch information
searls committed Feb 12, 2023
1 parent 6535986 commit 32cca90
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/test.yml
@@ -1,20 +1,23 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Tests
name: Node.js CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [14.x, 16.x, 18.x]
os: [ubuntu-latest, windows-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 32cca90

Please sign in to comment.