Build and Deploy Test Version #14
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: Build and Deploy Test Version | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| build_deploy_24: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v6 | |
| # - uses: HarithaVattikuti/setup-node@Testnodefetch | |
| # - uses : salmanmkc/setup-node@bump-actions-cache-v5 | |
| with: | |
| node-version: 20 | |
| package-manager-cache: true | |
| - name: Reproduce url.parse DeprecationWarning (Linux/macOS) | |
| if: runner.os != 'Windows' | |
| shell: bash | |
| run: | | |
| node --trace-deprecation -e "require('url').parse('https://example.com')" | |
| - name: Reproduce url.parse DeprecationWarning (Windows) | |
| if: runner.os == 'Windows' | |
| shell: pwsh | |
| run: | | |
| node --trace-deprecation -e "require('url').parse('https://example.com')" | |