-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/Amsterdam/design-system …
…into feat/DES-551-add-theme-setup
- Loading branch information
Showing
23 changed files
with
222 additions
and
968 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
name: Publish | ||
|
||
on: | ||
workflow_run: | ||
workflows: [Lint and test] | ||
types: [completed] | ||
branches: [main] | ||
|
||
jobs: | ||
create-release-and-publish: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
|
||
steps: | ||
- name: Create release | ||
uses: google-github-actions/release-please-action@v4 | ||
id: release | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
target-branch: main | ||
|
||
# The logic below handles the npm publication: | ||
- name: Check out branch | ||
uses: actions/checkout@v4 | ||
with: | ||
# This is necessary because on.workflow_run always runs on the | ||
# default branch, which is 'develop' in our case | ||
ref: "main" | ||
# these if statements ensure that a publication only occurs when | ||
# a new release is created: | ||
if: ${{ steps.release.outputs.releases_created }} | ||
|
||
- name: Set up Node.js version | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
registry-url: "https://registry.npmjs.org" | ||
if: ${{ steps.release.outputs.releases_created }} | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@v2 | ||
id: pnpm-install | ||
with: | ||
version: 8 | ||
run_install: false | ||
if: ${{ steps.release.outputs.releases_created }} | ||
|
||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
run: | | ||
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT | ||
if: ${{ steps.release.outputs.releases_created }} | ||
|
||
- name: Set up pnpm cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
if: ${{ steps.release.outputs.releases_created }} | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
if: ${{ steps.release.outputs.releases_created }} | ||
|
||
- name: Build | ||
run: pnpm run build | ||
if: ${{ steps.release.outputs.releases_created }} | ||
|
||
- name: Publish | ||
run: pnpm -r publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | ||
if: ${{ steps.release.outputs.releases_created }} | ||
|
||
# The logic below handles the Storybook deploy: | ||
- name: "Restore build artifact: Storybook docs" | ||
uses: dawidd6/action-download-artifact@v3 | ||
with: | ||
workflow: "lint-test.yml" | ||
name: storybook-docs | ||
path: dist/storybook | ||
if: ${{ steps.release.outputs.releases_created }} | ||
|
||
- name: "Restore build artifact: Storybook react" | ||
uses: dawidd6/action-download-artifact@v3 | ||
with: | ||
workflow: "lint-test.yml" | ||
name: storybook-react | ||
# React storybook is deployed to the /storybook-react subdirectory. | ||
# In the main docs storybook, the contents of /storybook-react | ||
# are also shown using Storybook composition. | ||
path: dist/storybook/storybook-react | ||
if: ${{ steps.release.outputs.releases_created }} | ||
|
||
- name: Deploy to GitHub Pages | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
branch: gh-pages | ||
folder: dist/storybook | ||
# feature branch directories are prefixed with demo-* | ||
# these are excluded from this action's default clean | ||
clean-exclude: demo-* | ||
if: ${{ steps.release.outputs.releases_created }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"packages/css": "0.3.0", | ||
"packages/react": "0.3.0", | ||
"proprietary/assets": "0.1.6", | ||
"proprietary/react-icons": "0.1.11", | ||
"proprietary/tokens": "0.3.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,5 @@ | ||
{ | ||
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json", | ||
"npmClient": "pnpm", | ||
"version": "independent", | ||
"useWorkspaces": true, | ||
"command": { | ||
"publish": {}, | ||
"version": { | ||
"allowBranch": ["develop"], | ||
"changelogPreset": { | ||
"name": "conventionalcommits", | ||
"issueUrlFormat": "{{host}}/{{owner}}/{{repository}}/issues/{{id}}" | ||
}, | ||
"conventionalCommits": true, | ||
"exact": true, | ||
"private": false, | ||
"skipBumpOnlyReleases": true, | ||
"syncWorkspaceLock": true | ||
} | ||
} | ||
"useWorkspaces": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@mixin hyphenation { | ||
hyphenate-limit-chars: var(--amsterdam-hyphenation-hyphenate-limit-chars); | ||
hyphens: var(--amsterdam-hyphenation-hyphens); | ||
overflow-wrap: var(--amsterdam-hyphenation-overflow-wrap); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.