Skip to content

Bump @types/node from 20.17.27 to 24.0.0 in the dev-types group #1327

Bump @types/node from 20.17.27 to 24.0.0 in the dev-types group

Bump @types/node from 20.17.27 to 24.0.0 in the dev-types group #1327

Workflow file for this run

#
# CI Pipeline
#
# NOTES:
# This workflow builds and tests extension updates.
name: Build
on:
push:
branches: [main, 'release/*']
pull_request:
branches: [main, 'release/*']
workflow_dispatch:
permissions: {}
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
- name: Install dependencies
shell: pwsh
timeout-minutes: 3
run: ./scripts/pipeline-deps.ps1
- name: Build module
shell: pwsh
timeout-minutes: 5
run: Invoke-Build -Configuration Release
- name: Upload official extension
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: Extension-official
path: ./out/extension/ps-rule.*
retention-days: 3
if-no-files-found: error
- name: Upload non-official extension
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: Extension-non-official
path: ./out/extension/bewhite.*
retention-days: 3
if-no-files-found: error