Skip to content

chore: 环境变量指定 tsconfig #41

chore: 环境变量指定 tsconfig

chore: 环境变量指定 tsconfig #41

Workflow file for this run

name: Development and Testing
on:
push:
branches:
- '*'
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
- name: Linux test
if: runner.os == 'Linux'
env:
DBUS_SESSION_BUS_ADDRESS: unix:path=/run/dbus/system_bus_socket
TS_NODE_PROJECT: tsconfig.mocha.json
run: |
sudo systemctl start dbus
xvfb-run -a pnpm test:suite:mocha
- name: Other platform test
if: runner.os != 'Linux'
env:
TS_NODE_PROJECT: tsconfig.mocha.json
run: pnpm test:suite:mocha
- run: pnpm run test:coverage
- run: vsce package --no-dependencies