Skip to content

Merge branch 'main' of https://github.com/0xDeRamp/deramp-extension #3

Merge branch 'main' of https://github.com/0xDeRamp/deramp-extension

Merge branch 'main' of https://github.com/0xDeRamp/deramp-extension #3

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: "Test Firefox Extension"
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Build extension
run: npm run build
- name: Install Playwright Firefox Browser
run: npx playwright install firefox --with-deps
- name: Run Playwright tests
uses: coactions/setup-xvfb@v1
with:
run: npx playwright test