Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/puppeteer-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Puppeteer-CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
test:
name: Test Puppeteer
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Run test
uses: tj-actions/puppeteer@v4
id: puppeteer-test
with:
files: tests/autofill-tests.mjs
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ extension/*
!extension/icons
!extension/manifest.json

# Node
# dependencies
# Node dependencies
node_modules
.pnp

# testing
coverage
react-chrome-extension/coverage
test.pdf

# production
build
Expand Down
Loading