Compare commits

...

4 Commits

Author SHA1 Message Date
Josh Gross 51465dd530 Merge branch 'main' into joshmgross/extend-node-test-coverage 2024-11-07 16:03:03 -05:00
Josh Gross 6435e050d3 Remove Node 16 2024-10-07 11:04:47 -04:00
Josh Gross b33c92d686 Merge branch 'main' into joshmgross/extend-node-test-coverage 2024-10-04 18:01:19 -04:00
Josh Gross 884cfe7772 Extend Node version test coverage 2024-10-04 16:37:08 -04:00
+6 -2
View File
@@ -17,6 +17,10 @@ jobs:
strategy:
matrix:
runs-on: [ubuntu-latest, macos-latest-large, windows-latest]
# Node 18 is the current default Node version in hosted runners, so users may still use the toolkit with it when running tests (see https://github.com/actions/toolkit/issues/1841)
# Node 20 is the currently support Node version for actions - https://docs.github.com/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions#runsusing-for-javascript-actions
node-version: [18.x, 20.x]
fail-fast: false
runs-on: ${{ matrix.runs-on }}
@@ -25,10 +29,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node.js 20.x
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install