Skip to content

build(deps-dev): Bump @wdio/cucumber-framework from 8.38.0 to 8.38.2 #2801

build(deps-dev): Bump @wdio/cucumber-framework from 8.38.0 to 8.38.2

build(deps-dev): Bump @wdio/cucumber-framework from 8.38.0 to 8.38.2 #2801

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/actions/setup
- name: Lint Test
run: npm run test:lint
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/actions/setup
- name: Unit Test
run: npm run test:unit
e2e:
name: 🧪 Test (${{ matrix.shard }}/${{ strategy.job-total }})
runs-on: ubuntu-latest
needs: [lint, unit]
strategy:
matrix:
shard: [1, 2, 3, 4]
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/actions/setup
- name: E2E Test
run: npm run test:features -- --shard ${{ matrix.shard }}/${{ strategy.job-total }}
- uses: actions/upload-artifact@v1
if: failure()
with:
name: logs-${{ matrix.shard }}
path: logs