Skip to content

feat(templates): add the possibility to select a specific git branch … #11

feat(templates): add the possibility to select a specific git branch …

feat(templates): add the possibility to select a specific git branch … #11

Workflow file for this run

name: Unit test core-lib
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: vscode-extension/packages/core-lib
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
cache: "npm"
cache-dependency-path: "vscode-extension/package-lock.json"
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm run test:unit