chore(deps): bump typing-extensions from 4.12.2 to 4.13.1 #13070
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
types: [checks_requested] | |
workflow_dispatch: # generally only for the "combine-prs" workflow | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
strategy: | |
matrix: | |
include: | |
- name: Static Tests | |
command: bin/static_tests | |
- name: Static Lint | |
command: bin/static_lint | |
- name: Static Pipeline | |
command: bin/static_pipeline | |
runs-on: ubuntu-24.04 | |
name: ${{ matrix.name }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 23.11.0 | |
cache: 'npm' | |
- name: Install Node dependencies | |
run: npm ci | |
- name: Run ${{ matrix.name }} | |
run: ${{ matrix.command }} |