Skip to content

fix(deps): update dependency got to v14 #2008

fix(deps): update dependency got to v14

fix(deps): update dependency got to v14 #2008

name: axis-discovery-ssdp
on:
push:
branches:
- "**"
paths:
- .github/workflows/axis-discovery-ssdp.yml
- packages/axis-discovery-ssdp/**
tags:
- axis-discovery-ssdp@**
workflow_dispatch:
defaults:
run:
working-directory: packages/axis-discovery-ssdp
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- run: echo -e "$(curl --silent https://raw.githubusercontent.com/FantasticFiasco/logo/master/logo.ansi)"
- run: yarn install --immutable --immutable-cache
- run: yarn build
- run: yarn test
- run: ESLINT_USE_FLAT_CONFIG=false yarn lint
- run: |
if [ ${{ matrix.node-version }} == 16.x ]; then
pushd ../..
yarn install --immutable --immutable-cache
node ./scripts/publish-on-tag.js
popd
fi
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}