Skip to content

Bump tar from 7.5.10 to 7.5.11 (#102) #145

Bump tar from 7.5.10 to 7.5.11 (#102)

Bump tar from 7.5.10 to 7.5.11 (#102) #145

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
filter: 'tree:0'
persist-credentials: false
show-progress: false
- name: Setup Node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.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@baa11fbfe1d6520db94683bd5c7a3818018e4309 # v5.1.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