Skip to content

feat: Rename "AppMap AI: Explain" to "AppMap: Ask Navie AI" #832

feat: Rename "AppMap AI: Explain" to "AppMap: Ask Navie AI"

feat: Rename "AppMap AI: Explain" to "AppMap: Ask Navie AI" #832

Workflow file for this run

name: Testing
on:
push:
branches-ignore: [master]
workflow_call:
jobs:
test:
name: 'Build and run tests'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-modules-
- uses: actions/cache@v3
with:
path: .vscode-test/vscode-*
key: ${{ runner.os }}-vscode-test
- uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- run: yarn install --immutable
- run: yarn pretest
- run: yarn compile
- run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn test
name: Run yarn test