Skip to content

[TP-1418][NO-CHANGELOG] DEX SDK Fee breakdown #3151

[TP-1418][NO-CHANGELOG] DEX SDK Fee breakdown

[TP-1418][NO-CHANGELOG] DEX SDK Fee breakdown #3151

name: Build, Lint, Typecheck, Test
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build, Lint, Typecheck, Test
runs-on: ubuntu-latest-8-cores
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*
registry-url: https://registry.npmjs.org/
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Check Single Package Version Policy
run: yarn syncpack:check
- name: Lint
run: yarn lint
- name: Build
run: export NODE_OPTIONS=--max-old-space-size=6144 && yarn build
- name: Typecheck
run: yarn typecheck
- name: Test
run: yarn test
- name: Get reviewing teams
id: reviewer-teams
run: echo "teams=${{ join(github.event.pull_request.requested_teams.*.name, ', ') }}" >> $GITHUB_OUTPUT
- name: Checkout-widgets cypress tests
if: ${{ contains(steps.reviewer-teams.outputs.teams, 'Wallets') && !contains(github.event.pull_request.title, 'SKIP-CY') }}
run: yarn test:checkout:cypress
- name: Upload cypress videos artifacts
if: ${{ contains(steps.reviewer-teams.outputs.teams, 'Wallets') && !contains(github.event.pull_request.title, 'SKIP-CY') }}
uses: actions/upload-artifact@v2
with:
name: checkout-widgets-cypress-videos
path: ./packages/checkout/widgets-lib/cypress/videos
- name: Upload cypress screenshots artifacts
uses: actions/upload-artifact@v2
if: failure()
with:
name: checkout-widgets-cypress-screenshots
path: ./packages/checkout/widgets-lib/cypress/screenshots
- name: Checkout SDK test coverage
if: ${{ contains(steps.reviewer-teams.outputs.teams, 'Wallets')}}
run: yarn test:checkout:sdk:coverage
- name: Upload Checkout SDK test coverage artifacts
if: ${{ contains(steps.reviewer-teams.outputs.teams, 'Wallets')}}
uses: actions/upload-artifact@v2
with:
name: checkout-sdk-coverage-report
path: ./packages/checkout/sdk/coverage