Skip to content

Next round (explorations / E-Components / tests) #12

Next round (explorations / E-Components / tests)

Next round (explorations / E-Components / tests) #12

Workflow file for this run

name: Run Unit Tests
on:
pull_request:
types: [opened, reopened, synchronize]
push:
branches: [master]
tags: ['*']
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
run-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Use Node.js 22
uses: actions/setup-node@v5
with:
node-version: 22
cache: 'npm'
- run: npm ci
- name: Run unit tests
run: npx vitest run