Skip to content

feat: Implement initial TestPilot browser extension with session mana… #5

feat: Implement initial TestPilot browser extension with session mana…

feat: Implement initial TestPilot browser extension with session mana… #5

Workflow file for this run

name: Build & Lint Extension
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Type Check
run: npm run type-check
- name: Build Extension
run: npm run build
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: testpilot-extension
path: dist/
retention-days: 5