Skip to content

chore(deps-dev): bump @types/node from 18.19.64 to 18.19.65 #1011

chore(deps-dev): bump @types/node from 18.19.64 to 18.19.65

chore(deps-dev): bump @types/node from 18.19.64 to 18.19.65 #1011

Workflow file for this run

name: " 🧪 Build and Test"
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
test-node-versions:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 22.x
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node-version }}
- name: Install / build / test
run: |
npm install
npm run build
npm test
test-os:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version:
- 20.x
os:
# - ubuntu-latest
- windows-latest
# - macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node-version }}
- name: Install / build / test
run: |
npm install
npm run build
npm test