Skip to content

build(deps-dev): Bump semantic-release from 23.0.8 to 23.1.1 #47

build(deps-dev): Bump semantic-release from 23.0.8 to 23.1.1

build(deps-dev): Bump semantic-release from 23.0.8 to 23.1.1 #47

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://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: NPM-CI
on:
push:
branches-ignore:
- master
jobs:
build:
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
runs-on: ubuntu-latest
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 ci
- run: npm test -- --reporter json --reporter-option output=test-results.json
- name: Archive test results
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: test-results-report
path: test-results.json