Improves accessibility by removing region on payment method item and button loading state #5179
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
on: ["pull_request"] | |
name: Coveralls | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20.12.2 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.12.2 | |
- name: install, coverage | |
run: | | |
yarn --frozen-lockfile | |
yarn test:coverage | |
env: | |
CI: true | |
- name: Coveralls Parallel | |
uses: coverallsapp/github-action@main | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: ./packages/lib/coverage/lcov.info | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@main | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: ./packages/lib/coverage/lcov.info |