Skip to content

build(deps): bump dependabot/fetch-metadata from 2.4.0 to 2.5.0 in the all group #262

build(deps): bump dependabot/fetch-metadata from 2.4.0 to 2.5.0 in the all group

build(deps): bump dependabot/fetch-metadata from 2.4.0 to 2.5.0 in the all group #262

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: npm-unit-test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 16
- name: Build
run: npm ci
- name: Test
run: npm test