Skip to content

ci: bump lodash from 4.17.21 to 4.17.23 #813

ci: bump lodash from 4.17.21 to 4.17.23

ci: bump lodash from 4.17.21 to 4.17.23 #813

Workflow file for this run

name: main
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-dotnet@v5.1.0
with:
dotnet-version: "9.0.x"
- run: dotnet build
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-dotnet@v5.1.0
with:
dotnet-version: "9.0.x"
- run: dotnet test /p:CollectCoverage=true
- name: publish coverage report to coveralls.io
uses: coverallsapp/github-action@v2.3.7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage/coverage.info
format: lcov
release:
name: Semantic Release
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop')
runs-on: ubuntu-latest
needs:
- build
- coverage
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- uses: actions/setup-dotnet@v5.1.0
with:
dotnet-version: "9.0.x"
- name: Install packages
run: npm ci --no-fund
- name: Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }}
run: npx semantic-release