Update Playwright to v1.49.0 #97
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: Test installation | |
on: | |
push: | |
branches: ['trunk'] | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
install: | |
name: Install pr-cli | |
runs-on: ubuntu-latest | |
env: | |
# renovate: datasource=github-releases depName=denoland/deno | |
DENO_VERSION: v2.0.6 | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: '${{env.DENO_VERSION}}' | |
- name: Install pr-cli | |
# Make sure to keep this in sync with installation instruction in README.md | |
run: deno install --global --name pr-cli --allow-run --allow-read --allow-env jsr:@annervisser/pr-cli | |
- name: Verify command runs successfully | |
run: pr-cli --version |