Skip to content

Commit

Permalink
Merge pull request #1 from localnerve/rc-8.0.0
Browse files Browse the repository at this point in the history
@8.0.0 - update dependencies
  • Loading branch information
localnerve committed Oct 9, 2023
2 parents b9f87df + 77b54b4 commit 6ff8cf3
Show file tree
Hide file tree
Showing 5 changed files with 14,588 additions and 27 deletions.
80 changes: 60 additions & 20 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,66 @@
name: test

on:
- push
- pull_request
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
linux:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
node-version:
- 12
- 14
- 16
os:
- ubuntu-latest
- macos-latest
- windows-latest
node-version: [16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
- 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: npm test
env:
CI: true

macos:
runs-on: macos-latest

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Prerequisites
run: brew install autoconf automake libtool
- run: npm install
- run: npm test
env:
CI: true

windows:
runs-on: windows-latest

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]

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: npm test
env:
CI: true
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
package-lock=false
package-lock=true

0 comments on commit 6ff8cf3

Please sign in to comment.