-
Notifications
You must be signed in to change notification settings - Fork 2
33 lines (33 loc) · 968 Bytes
/
dev-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Development and Testing
on:
push:
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm i -g @vscode/vsce pnpm
- name: Cache dependencies
uses: actions/cache@v4
id: cache
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: pnpm i --frozen-lockfile --ignore-scripts
- run: xvfb-run -a pnpm test:suite
if: runner.os == 'Linux'
- run: pnpm test:suite
if: runner.os != 'Linux'
- run: pnpm run test:coverage
- run: vsce package --no-dependencies