Skip to content

chore(deps): bump @stellar/stellar-sdk from 14.6.1 to 16.1.0 in /sdk … #561

chore(deps): bump @stellar/stellar-sdk from 14.6.1 to 16.1.0 in /sdk …

chore(deps): bump @stellar/stellar-sdk from 14.6.1 to 16.1.0 in /sdk … #561

Workflow file for this run

name: E2E Tests

Check failure on line 1 in .github/workflows/e2e.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/e2e.yml

Invalid workflow file

(Line: 42, Col: 1): 'name' is already defined, (Line: 44, Col: 1): 'on' is already defined, (Line: 50, Col: 1): 'jobs' is already defined
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
e2e-tests:
name: e2e-tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies
run: npm install
- name: Run lint
run: npm run lint
- name: Run tests
run: npm run test
- name: Build project
run: npm run build
- name: Upload build artifacts
uses: actions/upload-artifact@v7
with:
name: build-artifacts
path: dist
name: Playwright Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v7
if: always()
with:
name: playwright-report
path: client/playwright-report/
retention-days: 30