fix(webdriverio): allow switchWindow with no current window #68
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: Continuous Releases | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout Code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: 🧑🔧 Get Core Dependencies | |
uses: ./.github/workflows/actions/get-core-dependencies | |
- name: Enable Latest Corepack | |
run: | | |
echo "Before: corepack version => $(corepack --version || echo 'not installed')" | |
npm install -g corepack@latest | |
echo "After : corepack version => $(corepack --version)" | |
corepack enable | |
- name: 👷 Bootstrap Packages | |
run: pnpm run setup | |
shell: bash | |
env: | |
NODE_ENV: production | |
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish | |
run: pnpx pkg-pr-new publish --pnpm './packages/*' |