PhoneNumber scalar is not fully compatible with E.164 format so updated regex to support phone number with extension #6362
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: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Testing on Node ${{matrix.node_version}} | |
uses: the-guild-org/shared-config/.github/workflows/ci-node-matrix.yml@main | |
with: | |
script: yarn test | |
nodeVersions: '[18,20,22]' | |
lint: | |
uses: the-guild-org/shared-config/.github/workflows/lint.yml@main | |
with: | |
script: yarn ci:lint | |
secrets: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} |