chore: setup pipelines #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |