Remove attributes from items, previous and next buttons in pagination… #1103
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: | |
- '**' | |
paths-ignore: | |
- 'CHANGELOG.md' | |
- 'LICENCE' | |
- 'README.md' | |
tags-ignore: | |
- '**' | |
concurrency: | |
group: tests-${{ github.ref }} | |
cancel-in-progress: false | |
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 | |
storybook-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Tests | |
uses: ./.github/actions/storybook-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 |