Skip to content

Commit

Permalink
Merge branch 'release/1.0.0-alpha.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
titouanmathis committed Aug 2, 2024
2 parents d35ddd9 + 3fc4984 commit 460550e
Show file tree
Hide file tree
Showing 50 changed files with 6,463 additions and 9,670 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ jobs:
- run: npm run build

- name: Test
run: npm run test -- -- --coverage || npm run test -- -- --coverage
run: npm run test -- -- --coverage.enabled

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage
directory: ./packages/coverage
flags: unittests
fail_ci_if_error: false
verbose: true
Expand All @@ -55,7 +55,7 @@ jobs:
if [[ $VERSION =~ 'alpha' || $VERSION =~ 'beta' ]]; then
TAG='next'
fi
npm publish --tag $TAG
npm publish --tag $TAG --provenance --access public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Install modules
run: npm install --no-audit --no-fund
- name: Run tests
run: npm run test -- -- --coverage --runInBand --ci || npm run test -- -- --coverage --runInBand --ci
run: npm run test -- -- --coverage.enabled
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [v1.0.0-alpha.3](https://github.com/studiometa/ui/compare/1.0.0-alpha.2..1.0.0-alpha.3) (2024-08-02)

### Changed

- Migrate tests to Vitest ([#283](https://github.com/studiometa/ui/pull/283), [b76a444](https://github.com/studiometa/ui/commit/b76a444))
- ⚠️ Update @studiometa/js-toolkit 3.0.0-alpha.5 → 3.0.0-alpha.6 ([#284](https://github.com/studiometa/ui/pull/284), [c6f5dd7](https://github.com/studiometa/ui/commit/c6f5dd7))

## [v1.0.0-alpha.2](https://github.com/studiometa/ui/compare/1.0.0-alpha.1..1.0.0-alpha.2) (2024-08-01)

### Changed
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "studiometa/ui",
"version": "1.0.0-alpha.2",
"version": "1.0.0-alpha.3",
"description": "A set of opiniated, unstyled and accessible components.",
"license": "MIT",
"require": {
Expand Down
Loading

0 comments on commit 460550e

Please sign in to comment.