mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
Move order around, set default working directory
This commit is contained in:
parent
f51b0099dd
commit
da21e5f4c1
1 changed files with 4 additions and 3 deletions
7
.github/workflows/playwright.yml
vendored
7
.github/workflows/playwright.yml
vendored
|
@ -4,6 +4,9 @@ on:
|
|||
branches: [ main, master ]
|
||||
pull_request:
|
||||
branches: [ main, master ]
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./playwright-tests
|
||||
jobs:
|
||||
test:
|
||||
if: github.event.pull_request.draft == false
|
||||
|
@ -11,6 +14,7 @@ jobs:
|
|||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
# Do our best to cache the toolchain and node install steps
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16
|
||||
|
@ -23,9 +27,6 @@ jobs:
|
|||
- uses: Swatinem/rust-cache@v2
|
||||
- name: Install WASM toolchain
|
||||
run: rustup target add wasm32-unknown-unknown
|
||||
- uses: actions/checkout@v3
|
||||
- name: Enter playwright-tests
|
||||
run: cd playwright-tests
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: Install Playwright
|
||||
|
|
Loading…
Reference in a new issue