[DRAFT] Pay by link component #2864
This file contains hidden or 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: Pull Request workflow | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| - group/* | |
| - bot/translations | |
| types: [opened, synchronize, reopened] | |
| paths-ignore: | |
| - README.md | |
| - LICENSE | |
| - .gitignore | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: write | |
| actions: write | |
| steps: | |
| - name: Checkout the repo | |
| uses: actions/checkout@v4 | |
| - name: Run the preliminary setup steps | |
| uses: ./.github/actions/setup-env | |
| - name: Run unit tests | |
| run: npm run test | |
| - name: Build library | |
| run: npm run build |