@W-20359321 Adapt api-endpoint-documentation to Hide URL Panel #72
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: Tests and publishing | |
| env: | |
| FORCE_COLOR: 1 | |
| PLAYWRIGHT_BROWSERS_PATH: 0 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - master | |
| - main | |
| jobs: | |
| test_linux: | |
| name: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-22.04] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 18 | |
| - uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.npm | |
| node_modules/.cache/ms-playwright | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-playwright-1.40.1 | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - name: Install dependencies | |
| run: | | |
| rm -f package-lock.json | |
| npm install | |
| - name: Install Playwright browsers | |
| run: | | |
| echo "Installing Playwright browsers..." | |
| npx playwright@1.40.1 install --with-deps | |
| echo "Verifying installation..." | |
| ls -la node_modules/.cache/ms-playwright/ || echo "No playwright cache found in node_modules" | |
| - name: Run tests | |
| run: npm test | |
| test_win: | |
| name: "Windows" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 18 | |
| - uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.npm | |
| node_modules/.cache/ms-playwright | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-playwright-1.40.1 | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - name: Install dependencies | |
| run: | | |
| if (Test-Path package-lock.json) { del package-lock.json } | |
| npm install | |
| shell: pwsh | |
| - name: Install Playwright browsers | |
| run: npx playwright@1.40.1 install --with-deps | |
| - name: Run tests | |
| run: npm test | |
| tag: | |
| name: "Publishing release" | |
| if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' | |
| needs: | |
| - test_linux | |
| - test_win | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: '18.x' | |
| registry-url: 'https://registry.npmjs.org' | |
| - uses: actions/cache@v3 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - run: npm install --no-audit --registry https://registry.npmjs.org/ --no-shrinkwrap | |
| - name: Read version from package.json | |
| uses: culshaw/read-package-node-version-actions@v1 | |
| id: package-node-version | |
| - name: Changelog | |
| uses: scottbrenner/generate-changelog-action@master | |
| id: Changelog | |
| - name: Github Release | |
| id: create_release | |
| uses: actions/create-release@latest | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tag_name: v${{ steps.package-node-version.outputs.version }} | |
| release_name: v${{ steps.package-node-version.outputs.version }} | |
| body: | | |
| ${{ steps.Changelog.outputs.changelog }} | |
| draft: false | |
| prerelease: false | |
| - run: npm publish --access public | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |