Skip to content

chore: setup pipelines #2

chore: setup pipelines

chore: setup pipelines #2

Workflow file for this run

name: "Lint and build Widget"
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- 'packages/widget/**'
- '!packages/sdk-manager/**'
- '!packages/wallet-manager/**'
- '!packages/react/**'
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
fail-fast: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'yarn' # cache node modules
node-version: ${{ matrix.node }}
- run: corepack enable
- run: yarn set version stable
- run: yarn install --immutable
- run: yarn run lint:widget # lint code
- run: yarn run build:all # build widget