Update all non-major dependencies #94
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (C) 2024 8 Hobbies, LLC <hong@8hobbies.com> | |
# | |
# Permission to use, copy, modify, and/or distribute this software for anypurpose with or without fee | |
# is hereby granted. | |
# | |
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIESWITH REGARD TO THIS SOFTWARE | |
# INCLUDING ALL IMPLIED WARRANTIES OFMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE | |
# LIABLE FORANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGESWHATSOEVER RESULTING | |
# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN ANACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS | |
# ACTION, ARISING OUT OFOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | |
# | |
# OR | |
# | |
# This work is marked with CC0 1.0 Universal. | |
# Visit https://creativecommons.org/publicdomain/zero/1.0/legalcode.txt for the full text of the license. | |
name: Runtime | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
test: | |
name: Runtime | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x, 22.x] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
exclude: | |
# Only test Node 22 on Windows and MacOS | |
- os: macos-latest | |
node-version: 18.x | |
- os: macos-latest | |
node-version: 20.x | |
- os: windows-latest | |
node-version: 18.x | |
- os: windows-latest | |
node-version: 20.x | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "npm" | |
- name: Install Dependencies | |
run: | | |
npm install | |
- name: Test | |
run: | | |
npm test |