Skip to content

Add a .vscode/launch.json file to the default project template to ease out-of-the-box debugging in VSCode. #559

Add a .vscode/launch.json file to the default project template to ease out-of-the-box debugging in VSCode.

Add a .vscode/launch.json file to the default project template to ease out-of-the-box debugging in VSCode. #559

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
paths-ignore:
- '**.md'
- 'website/**'
- '.github/**'
- '.vscode/**'
- 'packages/**/.vscode/**'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- 'website/**'
- '.github/**'
- '.vscode/**'
- 'packages/**/.vscode/**'
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
uses: ./.github/actions/build
- name: Unit tests
uses: ./.github/actions/call-rush
with:
command: test -v