Skip to content
Closed
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
11 changes: 10 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,19 @@ jobs:
if: github.event.head_commit.author.name != 'github-actions[bot]'
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: yarn && yarn build
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- run: pnpm install --frozen-lockfile
env:
PNPM_ONLY_BUILT_DEPENDENCIES: gillespie59-react-rte
- run: pnpm run build
- uses: actions/upload-artifact@v4
with:
name: pogues
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/test-next.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 20
- run: cd next && yarn && yarn test:coverage
cache: 'pnpm'
cache-dependency-path: 'next/pnpm-lock.yaml'
- run: cd next && pnpm install && pnpm test:coverage
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
with:
Expand Down
17 changes: 14 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 20
- run: yarn
# Run tests sonar reports
- run: yarn test:coverage
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
# Run tests sonar reports
- name: Install dependencies
run: pnpm install --frozen-lockfile
env:
PNPM_ONLY_BUILT_DEPENDENCIES: gillespie59-react-rte

- name: Run tests with coverage
run: pnpm test:coverage
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
with:
Expand Down
4 changes: 4 additions & 0 deletions next/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Upgrade React to v19

## [2.3.0](https://github.com/InseeFr/Pogues/releases/tag/2.3.0) - 2026-01-19

### Added
Expand Down
Loading
Loading