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

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Playwright Tests
on:
push:
branches: [ main, master ]
branches: [ main ]
pull_request:
branches: [ main, master ]
branches: [ main ]
jobs:
test:
timeout-minutes: 60
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,15 @@ jobs:
github.event.review.state == 'approved')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }} # required otherwise GitHub blocks infinite loops in pushes originating in an action
- uses: actions/checkout@v4
if: github.actor != 'dependabot[bot]'
- uses: actions/checkout@v2
- uses: actions/checkout@v4
if: github.actor == 'dependabot[bot]'
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node
- run: npm i
- run: npm run test:jest
# no tests yet - run: npm run test:jest
14 changes: 11 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Ignore node_modules in all subdirectories of samples/
samples/**/node_modules/
# Ignore all node_modules including in subdirectories for samples/
**/node_modules/
samples/.env
node_modules/

# (temporary) Ignore dist files generated by build
**/dist/

# Ignore playwright outputs
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
Loading
Loading