Skip to content

Commit

Permalink
Merge branch 'main' into i18n-recipes-continuous-integration-fr
Browse files Browse the repository at this point in the history
  • Loading branch information
webdevbynight committed Dec 30, 2024
2 parents bebe769 + 71b3fbb commit 3c9b3ef
Show file tree
Hide file tree
Showing 16 changed files with 1,075 additions and 655 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/label-issue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Label documentation issues
uses: github/issue-labeler@50f02baa9587156323c3ca2c1ed396d220796ba6
uses: github/issue-labeler@411dd122ee7386163194b2a61132422e54ec0d99
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/issue-labeler.yaml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lunaria.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
# Necessary for Lunaria to work properly
# Makes the action clone the entire git history
Expand All @@ -41,4 +41,4 @@ jobs:
- run: pnpm install

- name: Generate Lunaria Overview
uses: yanthomasdev/[email protected]
uses: yanthomasdev/lunaria-action@06ad5ab2704d030708baf3b279ca0446b418e853 # v0.1.0
48 changes: 26 additions & 22 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,37 @@
name: Playwright Tests
on:
push:
branches: main
branches:
- main
pull_request:
branches: main
branches:
- main
env:
E2E: true
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: lts/*
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Build
run: pnpm build
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: lts/*
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Build
run: pnpm build
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps

- name: Start server
run: pnpm preview &
- name: Start server
run: pnpm preview &

- name: Run Playwright tests
run: pnpm exec playwright test
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- name: Run Playwright tests
run: pnpm exec playwright test
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30
Loading

0 comments on commit 3c9b3ef

Please sign in to comment.