Incoming Versions Compatibility Test #169
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: Incoming Versions Compatibility Test | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' # daily at 00:00 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: npx nx build ngx-deploy-npm | |
- name: Archive build result | |
uses: actions/upload-artifact@v4 | |
with: | |
name: library-dist-${{ github.sha }} | |
path: dist | |
backwards-compatibility-test: | |
needs: build | |
strategy: | |
matrix: | |
nx-version: [latest] | |
uses: ./.github/workflows/smoke-test-nx-workspace.yml | |
with: | |
nx-version: ${{matrix.nx-version}} |