Skip to content

docs: badge updates #12

docs: badge updates

docs: badge updates #12

Workflow file for this run

name: Feature Tests
on:
push:
workflow_dispatch:
jobs:
feature-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup node
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm
- uses: actions/setup-node@v4
with:
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Run feature tests
run: npm run test:demo
- name: Upload Artifact
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: results
path: demo/test/results/report.html
retention-days: 3