Skip to content

Bump query-string from 9.4.1 to 9.5.0 #212

Bump query-string from 9.4.1 to 9.5.0

Bump query-string from 9.4.1 to 9.5.0 #212

Workflow file for this run

name: build
on:
push:
branches: [ dev ]
tags: [ '*' ]
paths-ignore:
- '**/*.gitattributes'
- '**/*.gitignore'
- '**/*.md'
pull_request:
branches: [ dev ]
workflow_dispatch:
permissions: {}
jobs:
build:
name: build
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
filter: 'tree:0'
persist-credentials: false
show-progress: false
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: '24.x'
registry-url: 'https://registry.npmjs.org'
- name: Update npm
run: npm install -g npm@latest
- name: Install packages
run: |
npm ci
- name: Setup .NET SDK
uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0
with:
dotnet-version: '10.0.x'
- name: Lint
run: |
npm run format-check
- name: Test
run: |
npm test
- name: Publish
if: |
github.event.repository.fork == false &&
startsWith(github.ref, 'refs/tags/')
run: npm publish