Remove italics, update heading font sizes and change padding on block… #562
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: CI | |
on: | |
push: | |
branches: | |
- '**' | |
concurrency: | |
group: tests-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint | |
uses: ./.github/actions/lint | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Tests | |
uses: ./.github/actions/tests | |
test-package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test build package | |
uses: ./.github/actions/test-package | |
prototype-kit: | |
runs-on: ubuntu-latest | |
needs: | |
- test-package | |
steps: | |
- uses: actions/checkout@v4 | |
- name: GOV.UK prototype kit test | |
uses: ./.github/actions/prototype-kit-test |