Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feature/pkg-pr-new
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienZ committed Oct 20, 2024
2 parents 68777d8 + 7527014 commit 3f083a0
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 68 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/tests-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: tests-ci

on:
push:
branches:
- '**' # Matches every branch
pull_request:
branches:
- main

jobs:
install-and-test:
timeout-minutes: 3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable pnpm
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: pnpm i

- name: Build lib
run: npm run build:lib

- name: Install tests dependencies
run: cd test && pnpm i

- name: Download Playwright browser
run: cd test && pnpx playwright install

- name: Run tests
run: cd test && npm run test:e2e
68 changes: 0 additions & 68 deletions playwright-report/index.html

This file was deleted.

0 comments on commit 3f083a0

Please sign in to comment.