Skip to content

chore: remove utrecht-link--icon-left class name #5998

chore: remove utrecht-link--icon-left class name

chore: remove utrecht-link--icon-left class name #5998

name: Continuous Delivery
on:
push:
branches:
- main
pull_request:
env:
CI: true
MAIN_BRANCH: "main"
jobs:
install:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.6
- name: Install pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 #v4.0.0
- name: Set up Node.js version
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install dependencies
run: |
pnpm install
pnpm ls --recursive
lint:
runs-on: ubuntu-latest
needs: install
env:
NODE_OPTIONS: "--max-old-space-size=6114"
steps:
- name: Checkout branch
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.6
- name: Install pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 #v4.0.0
- name: Set up Node.js version
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install dependencies
run: |
pnpm install
- name: "Continuous Integration: lint"
run: |
pnpm run --if-present lint
build:
runs-on: ubuntu-latest
needs: install
env:
NODE_OPTIONS: "--max-old-space-size=6114"
steps:
- name: Checkout branch
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.6
- name: Install pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 #v4.0.0
- name: Set up Node.js version
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install dependencies
run: |
pnpm install --frozen-lockfile
- name: "Continuous Integration: build"
env:
BASE_URL: "/utrecht/"
run: |
pnpm run --if-present build
- name: "Continuous Integration: lint build"
run: |
pnpm run --if-present lint-build
- name: "Continuous Integration: test build"
run: |
pnpm run --if-present test-build
- name: "Continuous Integration: Git status"
shell: bash
run: |
if git diff --no-ext-diff --quiet --exit-code ; then
echo "No unstaged changes that would prevent 'npm publish'"
exit 0
else
echo "The following unstaged changes occur after the build step. Add the files to Git or specify the paths in '.gitignore' to proceed."
git diff --exit-code
exit 1
fi
- name: Upload artifact for GitHub Pages
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3.0.1
if: github.ref == 'refs/heads/main'
with:
path: packages/design-system-website/dist/
- name: "Retain build artifact: website"
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: website
path: packages/design-system-website/dist/
retention-days: 1
- name: "Retain build artifact: storybook"
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: storybook
path: packages/storybook/dist/
retention-days: 1
test:
runs-on: ubuntu-latest
needs: install
env:
NODE_OPTIONS: "--max-old-space-size=6114"
steps:
- name: Checkout branch
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.6
- name: Install pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 #v4.0.0
- name: Set up Node.js version
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install dependencies
run: |
pnpm install
- name: "Continuous Integration: test"
run: |
pnpm run --if-present test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
visual-regression-test:
runs-on: ubuntu-latest
needs: install
env:
NODE_OPTIONS: "--max-old-space-size=6114"
steps:
- name: Checkout branch
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.6
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 #v4.0.0
- name: Set up Node.js version
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install dependencies
run: |
pnpm install
- name: "Continuous Integration: build Storybook with animation disabled"
env:
STORYBOOK_REDUCED_MOTION: 1
run: |
pnpm run --if-present build
- name: Publish to Chromatic
uses: chromaui/action@6eca23b4399151ac2cfc17fa95190d807c7e9519 # v11.10.2
if: github.event.pull_request.draft == false
with:
autoAcceptChanges: ${{ env.MAIN_BRANCH }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
storybookBuildDir: packages/storybook-css/dist/
publish-website:
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
environment:
name: github-pages
url: ${{ steps.deploy-pages.outputs.page_url }}
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
id: deploy-pages
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
publish-npm:
runs-on: ubuntu-latest
needs: [lint, test]
if: github.ref == 'refs/heads/main'
env:
NODE_OPTIONS: "--max-old-space-size=6114"
steps:
- name: Checkout release branch
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.6
with:
token: ${{ secrets.GH_TOKEN }}
- name: Install pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 #v4.0.0
- name: Set up Node.js version
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version-file: .nvmrc
cache: pnpm
- name: "Continuous Deployment: install"
run: |
pnpm install
pnpm ls --recursive
- name: "Continuous Deployment: build"
run: |
pnpm run --if-present build
# - name: "Continuous Deployment: publish to GitHub repository"
# env:
# GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
# GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
# GIT_AUTHOR_NAME: "NL Design System"
# GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }}
# GIT_COMMITTER_NAME: "NL Design System"
# MAIN_BRANCH:
# run: |
# git push --set-upstream origin HEAD
# pnpm run release
- name: "Continuous Deployment: publish changeset to GitHub repository"
uses: changesets/action@3de3850952bec538fde60aac71731376e57b9b57 # v1.4.8
id: changeset
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_AUTHOR_NAME: "NL Design System"
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }}
GIT_COMMITTER_NAME: "NL Design System"
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
with:
commit: "docs(release): design system packages"
setupGitUser: false
title: "docs(release): design system packages"
publish: "pnpm run publish:changeset"
# - name: "Continuous Deployment: publish to npm"
# env:
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
# run: |
# pnpm config set "//registry.npmjs.org/:_authToken" "${NPM_TOKEN}"
# pnpm run publish
# pnpm config delete "//registry.npmjs.org/:_authToken"