Remove contrast default on split and shifted hero components #460
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
name: Publish to GitHub pages | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.storybook/**' | |
- 'src/**' | |
- '.babelrc.json' | |
- '.eslintrc.js' | |
- '.nvmrc' | |
- '.stylelintrc' | |
- 'govuk-prototype-kit.config.json' | |
- 'package-lock.json' | |
- 'package.json' | |
- 'webpack.config.js' | |
tags-ignore: | |
- '**' | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: pages | |
cancel-in-progress: true | |
jobs: | |
github-pages: | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- name: Install dependencies | |
run: npm ci | |
- name: Build Storybook | |
run: npm run build:storybook | |
- uses: actions/configure-pages@v4 | |
- uses: actions/upload-pages-artifact@v3 | |
with: | |
path: storybook | |
- id: deployment | |
uses: actions/deploy-pages@v4 |