chore(deps): update dependency libphonenumber-js to v1.10.42 (#456) #854
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: Build | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
build-packages: | |
name: Packages | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js and Cache | |
uses: taiga-family/ci/actions/[email protected] | |
- name: Build packages | |
run: npx nx run-many --target build --all --exclude=demo | |
build-demo: | |
name: Demo | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js and Cache | |
uses: taiga-family/ci/actions/[email protected] | |
- name: Build demo application for Github Pages | |
run: npx nx build-gh-pages | |
concurrency: | |
group: build-${{ github.head_ref }} | |
cancel-in-progress: true |