|
@@ -1,9 +1,9 @@
|
|
|
name: Playwright Tests
|
|
|
on:
|
|
|
push:
|
|
|
- branches: [ main, master ]
|
|
|
+ branches: [main, master]
|
|
|
pull_request:
|
|
|
- branches: [ main, master ]
|
|
|
+ branches: [main, master]
|
|
|
defaults:
|
|
|
run:
|
|
|
working-directory: ./playwright-tests
|
|
@@ -16,39 +16,36 @@ jobs:
|
|
|
test:
|
|
|
if: github.event.pull_request.draft == false
|
|
|
timeout-minutes: 60
|
|
|
- runs-on: ubuntu-20.04
|
|
|
+ runs-on: ubuntu-latest
|
|
|
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
|
|
|
- - name: Install Rust
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
- with:
|
|
|
- profile: minimal
|
|
|
- toolchain: stable
|
|
|
- override: true
|
|
|
- - uses: Swatinem/rust-cache@v2
|
|
|
- - name: Install WASM toolchain
|
|
|
- run: rustup target add wasm32-unknown-unknown
|
|
|
- - name: Install dependencies
|
|
|
- run: npm ci
|
|
|
- - name: Install Playwright
|
|
|
- run: npm install -D @playwright/test
|
|
|
- - name: Install Playwright Browsers
|
|
|
- run: npx playwright install --with-deps
|
|
|
- # Cache the CLI by using cargo run internally
|
|
|
- # - name: Install Dioxus CLI
|
|
|
- # uses: actions-rs/cargo@v1
|
|
|
- # with:
|
|
|
- # command: install
|
|
|
- # args: --path packages/cli
|
|
|
- - name: Run Playwright tests
|
|
|
- run: npx playwright test
|
|
|
- - uses: actions/upload-artifact@v3
|
|
|
- if: always()
|
|
|
- with:
|
|
|
- name: playwright-report
|
|
|
- path: playwright-report/
|
|
|
- retention-days: 30
|
|
|
+ # Do our best to cache the toolchain and node install steps
|
|
|
+ - uses: actions/checkout@v3
|
|
|
+ - uses: actions/setup-node@v3
|
|
|
+ with:
|
|
|
+ node-version: 16
|
|
|
+ - name: Install Rust
|
|
|
+ uses: dtolnay/rust-toolchain@master
|
|
|
+ with:
|
|
|
+ toolchain: stable
|
|
|
+ targets: x86_64-unknown-linux-gnu,wasm32-unknown-unknown
|
|
|
+ - uses: Swatinem/rust-cache@v2
|
|
|
+ - name: Install dependencies
|
|
|
+ run: npm ci
|
|
|
+ - name: Install Playwright
|
|
|
+ run: npm install -D @playwright/test
|
|
|
+ - name: Install Playwright Browsers
|
|
|
+ run: npx playwright install --with-deps
|
|
|
+ # Cache the CLI by using cargo run internally
|
|
|
+ # - name: Install Dioxus CLI
|
|
|
+ # uses: actions-rs/cargo@v1
|
|
|
+ # with:
|
|
|
+ # command: install
|
|
|
+ # args: --path packages/cli
|
|
|
+ - name: Run Playwright tests
|
|
|
+ run: npx playwright test
|
|
|
+ - uses: actions/upload-artifact@v3
|
|
|
+ if: always()
|
|
|
+ with:
|
|
|
+ name: playwright-report
|
|
|
+ path: playwright-report/
|
|
|
+ retention-days: 30
|