Bump the npm-dependencies group across 1 directory with 22 updates #534
Workflow file for this run
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: Run all tests | |
on: | |
pull_request: | |
push: | |
branches-ignore: | |
- main | |
- release-* | |
paths-ignore: | |
- 'CHANGELOG.md' | |
- 'LICENCE' | |
- 'README.md' | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run code style and lint tests | |
uses: ./.github/actions/lint | |
unit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run unit tests | |
uses: ./.github/actions/tests | |
storybook-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run interaction and accessibility test | |
uses: ./.github/actions/storybook-tests |