Skip to content

chore: remove test results from repo #2

chore: remove test results from repo

chore: remove test results from repo #2

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request_target:
branches: [main]
types: [opened, synchronize]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: "package.json"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build extension
run: npm run build
- name: Run tests
run: npm run test
- name: Upload report
uses: actions/upload-artifact@v4
if: always()
with:
name: test-report
path: test-report/
retention-days: 30