Skip to content

chore: update chromedriver to 119 (#7883) #1291

chore: update chromedriver to 119 (#7883)

chore: update chromedriver to 119 (#7883) #1291

Workflow file for this run

name: Deploy Main Playground
on:
push:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install and Build
run: |
export NODE_OPTIONS="--max_old_space_size=4096"
yarn install
yarn build:playground
- name: Write version.md
run: git log -1 &>> packages/playground/dist/version.md
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: packages/playground/dist # The folder the action should deploy.
target-folder: nightly
clean: true