mirror of
https://github.com/mandiant/capa.git
synced 2025-12-05 20:40:05 -08:00
44 lines
971 B
YAML
44 lines
971 B
YAML
name: capa Explorer Web tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master ]
|
|
paths:
|
|
- 'web/explorer/**'
|
|
workflow_call: # this allows the workflow to be called by other workflows
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: 'recursive'
|
|
fetch-depth: 1
|
|
show-progress: true
|
|
|
|
- name: Set up Node
|
|
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
|
|
with:
|
|
node-version: 20
|
|
cache: 'npm'
|
|
cache-dependency-path: 'web/explorer/package-lock.json'
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
working-directory: web/explorer
|
|
|
|
- name: Lint
|
|
run: npm run lint
|
|
working-directory: web/explorer
|
|
|
|
- name: Format
|
|
run: npm run format:check
|
|
working-directory: web/explorer
|
|
|
|
- name: Run unit tests
|
|
run: npm run test
|
|
working-directory: web/explorer
|