Web add releases workflow test #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |