Skip to content

unit tests on vsce

unit tests on vsce #42

Workflow file for this run

name: Test
on: [pull_request]
permissions: read-all
concurrency:
group: ${{ github.ref_name }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: macos-latest
timeout-minutes: 15
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v4.0.2
with:
node-version: 22.x
- name: Install dependencies and link
run: npm ci
- name: Package
run: npm run build
- name: Run tests
run: npm run test:cov